.rmi-dashboard-nav {
    display: flex;
    flex-direction: column;
    min-width: 179px;
    min-height: 100vh;
    padding-left: 48px;
    padding-right: 58px;
    background: #fff;
    box-sizing: border-box;
}



.btn-dashboard {
    padding: 5px 16px;
    font-family: 'TikTok Sans', sans-serif !important;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.rmi-website-go {
    border: 1px solid black;
    border-radius: 10px;
    color: black;
}

.rmi-btn-my-profile {
    background-color: #9E6D19;
    color: white;

}

/* ── Bottom action buttons (sidebar) ── */
.rmi-dashboard-nav__bottom-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    padding-bottom: 32px;
}

.rmi-website-go-mobile,
.rmi-btn-my-profile-mobile {
    display: none;
    /* shown only at ≤990px via responsive.css */
    padding: 5px 16px;
    font-family: 'TikTok Sans', sans-serif !important;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    justify-content: center;
}

@media (max-width: 990px) {
    .rmi-website-go-mobile {
        display: flex;
    }

    .rmi-btn-my-profile-mobile {
        display: flex;
    }

}


.rmi-website-go-mobile {
    border: 1px solid #9E6D19;
    color: #9E6D19 !important;
}

.rmi-btn-my-profile-mobile {
    background-color: #9E6D19;
    color: white !important;
}

/* ── Logo ── */
.rmi-dashboard-nav__logo {
    margin-bottom: 55px;
    flex-shrink: 0;
}

.rmi-dashboard-nav__logo a {
    display: inline-block;
    line-height: 0;
}

/* ── Lists ── */
.rmi-dashboard-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.rmi-dashboard-nav__list--secondary {
    margin-top: 0;
    padding-top: 31px;
}

/* ── Items ── */
.rmi-dashboard-nav__item {
    display: flex;
    flex-direction: column;
    max-width: 250px;
}

/* ── Links & buttons ── */
.rmi-dashboard-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

.rmi-dashboard-nav__link:hover,
.rmi-dashboard-nav__link:focus-visible {
    color: var(--bronze, #9e6d19) !important;
    outline: none;
}

.rmi-dashboard-nav__link--active {
    font-weight: 700;
}

/* ── Icon ── */
.rmi-dashboard-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 16px;
}

/* ── Chevron (Annual Reporting) ── */
.rmi-dashboard-nav__chevron {
    display: flex;
    align-items: center;
    margin-left: auto;
    transition: transform 0.35s ease;
}

/* ── details / summary reset ── */
.rmi-nav-details {
    width: 100%;
}

.rmi-nav-details>summary {
    list-style: none;
    cursor: pointer;
}

.rmi-nav-details>summary::-webkit-details-marker {
    display: none;
}

.rmi-nav-details[open]>summary .rmi-dashboard-nav__chevron {
    transform: rotate(180deg);
}

/* ── Sub-menu ── */
.rmi-dashboard-nav__sub {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 26px;
    display: flex !important;
    /* override UA details:not([open]) display:none */
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    transition: max-height 0.35s ease, padding-top 0.35s ease, gap 0.35s ease;
}

.rmi-nav-details[open]>.rmi-dashboard-nav__sub {
    max-height: 200px;
    padding-top: 16px;
    gap: 16px;
}