/* userguide.css — two-column user-guide / tutorial layout.
   These classes originate in the legacy css/mcs11.css. This file restores just
   the layout rules the older /support/v11/userguide/ pages need on top of
   mcs-redesign.css (the file had gone missing, leaving those pages unstyled). */

.tutsec {
    background-color: #f7f7f7;
    flex-grow: 1;
}

.tutinfobody {
    background-color: #fff;
    width: 85%;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    margin: 25px auto;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.tutmenu {
    border-right: 1px solid #d6d6d6;
    width: 25%;
    max-width: 400px;
    padding: 20px 0;
}

.tutmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tutmenu li {
    cursor: pointer;
    padding: 5px 1em;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    line-height: 17px;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
}

.tutmenu a {
    text-decoration: none;
}

.tutinfo {
    width: 80%;
    max-width: 1000px;
}

.tutinfoinner {
    margin: 30px;
}

@media (max-width: 760px) {
    .tutinfobody { flex-direction: column; width: 92%; }
    .tutmenu { width: 100%; max-width: none; border-right: none; border-bottom: 1px solid #d6d6d6; }
    .tutinfo { width: 100%; }
    .tutinfoinner { margin: 20px; }
}
