/* ======================================================
   WALLET SIDEBAR CONTAINER
====================================================== */

.account-sidebar {
    width: 280px;
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

/* ======================================================
   BACK BUTTON
====================================================== */

.wallet-back-wrapper {
    margin-bottom: 24px;
}

.wallet-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #f8fafc;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.wallet-back-btn:hover {
    background: #ede9fe;
    color: #6d28d9;
    transform: translateX(-3px);
}

.wallet-back-btn i {
    font-size: 12px;
}

/* ======================================================
   SIDEBAR HEADER
====================================================== */

.wallet-sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #6d28d9;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.wallet-sidebar-header i {
    font-size: 18px;
    background: rgba(109, 40, 217, 0.1);
    padding: 8px;
    border-radius: 10px;
}

/* ======================================================
   MENU
====================================================== */

.account-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ======================================================
   MENU LINKS
====================================================== */

.account-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    color: #374151;
    transition: all 0.25s ease;
    position: relative;
}

.account-link i {
    font-size: 15px;
    width: 18px;
    text-align: center;
}

/* Hover Effect */
.account-link:hover {
    background: #f3f0ff;
    color: #6d28d9;
    transform: translateX(4px);
}

/* ======================================================
   ACTIVE LINK (PREMIUM STYLE)
====================================================== */

.account-link.active {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.25);
}

.account-link.active i {
    color: #ffffff;
}

/* Subtle left indicator */
.account-link.active::before {
    content: "";
    position: absolute;
    left: -8px;
    width: 6px;
    height: 60%;
    background: #7c3aed;
    border-radius: 4px;
}

/* ======================================================
   DISABLED LINKS
====================================================== */

.account-link.disabled {
    opacity: 0.4;
    pointer-events: none;
    background: #f9fafb;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 992px) {

    .account-sidebar {
        width: 100%;
        padding: 22px;
        border-radius: 18px;
    }

    .account-menu {
        gap: 12px;
    }

    .account-link {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {

    .account-sidebar {
        padding: 20px;
        border-radius: 16px;
    }

    .wallet-sidebar-header {
        font-size: 16px;
    }

    .account-link {
        font-size: 13px;
        padding: 11px 14px;
    }
}
