.account_dashboard_menu_container {
    background: #9f4092;
}

.account_dashboard_menu {
    padding: 0 30px;
}

.account_dashboard_menu > ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    justify-content: space-between;
    margin: 0;
}

.account_dashboard_menu > ul > li {
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.account_dashboard_menu > ul > li:hover {
    border: 2px solid #7419a078;
    border-style: inset;
}

.account_dashboard_menu > ul > li.active {
    border: 2px solid #7419a078;
    border-style: inset;
}

.account_dashboard_menu > ul > li:hover a {
    text-decoration: underline;
}

.account_dashboard_menu > ul > li > a {
    color: white;
    text-transform: uppercase;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12.5px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.my-account-title {
    text-transform: capitalize;
    font-size: 2.2rem;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.reports_menu .nav-item {
    flex: 1 0 20%;
    display: flex;
}

.reports_menu.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: none;
    margin: 0;
    justify-content: center;
  }

.nav-tabs>li.active>a {
    background-color: #e71d72 !important;
    color: white;
    font-weight: 400;
}

.nav-tabs>li>a {
    color: white;
    font-weight: 400 !important;
    width: 100%;
    text-align: center;
    margin-right: 0;
}

.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: white;
}

.nav-tabs>li>a:hover {
    background-color: #e71d72 !important;
    color: white;
}

.reports_menu {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    display: flex;
    justify-content: center;
    margin: 0;
}

.reports_menu_container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.nav-tabs>li {
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin-bottom: 0;
}

.account_dashboard_content table .table-darker {
    background-color: #1d81b7;
    color: #fff;
}

.account_dashboard_content table .table-contrast {
    background-color: #1d81b77a;
    color: #666;
}

.account_dashboard_content table td {
    padding: .75rem 2rem;
}

@media screen and ( max-width: 991px ) {
    .account_dashboard_menu > ul {
        flex-direction: column;
    }
}

.dropdown-trigger {
    position: relative;
}

.account-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    /* min-width: 180px; */
    width: max-content;
    z-index: 999;
}

/* Show on hover */
.dropdown-trigger:hover .account-dropdown-menu {
    display: block;
}

/* Optional: smooth fade-in */
.account-dropdown-menu {
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-trigger:hover .account-dropdown-menu {
    opacity: 1;
    transform: translateY(0);
}

.account-dropdown-menu {
    background: #9f4092;
}

.account-dropdown-menu > ul {
    flex-direction: column;
}

.account-dropdown-menu > ul > li > a {
    padding: 1rem;
}