.tabs-nav {
    margin-bottom: 2rem;
    overflow-x: auto;
    white-space: nowrap;
    background: #211851D6;
    border-radius: 10px;
}

.main-menu-cabinet {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    align-items: center;
}

.main-menu-cabinet .menu-item {
    flex-shrink: 0;
}

.main-menu-cabinet .menu-item a {
    display: inline-block;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-menu-cabinet .menu-item a:hover {
    color: #fff;
}

.main-menu-cabinet .current-menu-item a {
    color: #fff;
    font-weight: bold;
    /*border-bottom: 2px solid #fff;*/
}

@media (max-width: 768px) {
    .main-menu-cabinet {
        gap: 1rem;
        font-size: 0.95rem;
    }
    .main-menu-cabinet .menu-item a {
        padding: 0.8rem 0;
    }
}


.dashboard-panel {
    color: #ffffff;
}
.dashboard-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}
.card {
    background: #211851D6;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    align-items: center;
    text-align: center;
}
.card-title {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}
.card-value {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: 100%;
    align-items: center;
}
.balance-type {
    background: #e6e6e6;
    color: #555;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    align-items: center;
    text-align: center;
}
.card-details div,
.card-sub {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
    opacity: 0.85;
    width: 100%;
    align-items: center;
    gap: 20px;
}
.card-sub span,
.card-details span {
    font-weight: bold;
    opacity: 1;
}
@media (max-width: 768px) {
    .dashboard-grid {
        flex-direction: column;
        align-items: center;
    }
}


.commission-table-section {
    padding: 2rem;
    color: #fff;
}
.table-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.table-title a {
    font-size: 0.95rem;
    color: #999;
    margin-left: 0.5rem;
}
.table-wrapper {
    overflow-x: auto;
    background: #0e0b24;
    border-radius: 8px;
}
.commission-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
.commission-table th,
.commission-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.commission-table thead th {
    background: #211851D6;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.commission-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}
.badge {
    background: #f59e0b;
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
}
@media (max-width: 768px) {
    .commission-table th,
    .commission-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    .badge {
        padding: 0.3rem 0.8rem;
    }
}