/* Combined Auth Custom CSS */

/* --- Extracted from: cars.php --- */
.user-dashboard-content {
        background-color: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
    }
    .section-card {
        background: #fff;
        border: none;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }
    .section-title-bar {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px 25px;
        border-bottom: 1px solid #eff2f5;
        background-color: #fff;
        border-radius: 12px 12px 0 0;
    }
    .section-title-bar h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: #181c32;
    }
    .section-title-bar .icon-box {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    .icon-green { background: rgba(80, 205, 137, 0.1); color: #50cd89; }
    .icon-orange { background: rgba(255, 169, 63, 0.1); color: #ffa93f; }
    
    .card-body-custom {
        padding: 25px;
        position: relative;
    }

    /* Checkbox Cards for Zones */
    .zone-checkbox-card {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 15px;
        background: #f8f9fa;
        border: 1px solid #e4e6ef;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        user-select: none;
        height: 100%;
    }
    .zone-checkbox-card i {
        color: #a1a5b7;
        font-size: 16px;
        transition: 0.3s;
    }
    .zone-checkbox-card span {
        color: #5e6278;
        font-weight: 600;
        font-size: 14px;
        transition: 0.3s;
    }
    .zone-checkbox-card:hover {
        background: #f1faff;
        border-color: #009ef7;
    }
    .zone-checkbox-card.active {
        background: #f1faff;
        border-color: #009ef7;
        box-shadow: 0 4px 10px rgba(0, 158, 247, 0.15);
    }
    .zone-checkbox-card.active i {
        color: #009ef7;
    }
    .zone-checkbox-card.active span {
        color: #009ef7;
    }

    /* Tabs Style for Vehicles */
    .vehicle-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 25px;
        border-bottom: 2px solid #eff2f5;
        padding-bottom: 15px;
    }
    .vehicle-tab {
        background: #f8f9fa;
        border: 1px solid #e4e6ef;
        border-radius: 8px;
        padding: 10px 20px;
        cursor: pointer;
        font-weight: 600;
        color: #5e6278;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .vehicle-tab img {
        width: 40px;
        height: auto;
    }
    .vehicle-tab:hover {
        background: #f1faff;
        color: #009ef7;
        border-color: #009ef7;
    }
    .vehicle-tab.active {
        background: #009ef7;
        color: #fff;
        border-color: #009ef7;
        box-shadow: 0 4px 10px rgba(0,158,247,0.3);
    }
    .vehicle-tab.has-prices::after {
        content: '\f00c';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        color: #50cd89;
        margin-left: 5px;
    }
    .vehicle-tab.active.has-prices::after {
        color: #fff;
    }
    
    /* Ultra-Modern Price Panel Grid Styling */
    #pricePanel {
        display: none;
        animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    #pricePanel.show {
        display: block;
    }
    @keyframes slideUpFade {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .zone-price-box {
        background: #ffffff;
        border: none;
        border-radius: 16px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
        border-left: 5px solid #009ef7;
        position: relative;
    }
    .zone-price-box h5 {
        color: #181c32;
        font-size: 16px;
        letter-spacing: -0.2px;
    }
    
    .airport-price-card {
        background: #f9fbfd;
        border: 1px solid transparent;
        border-radius: 12px;
        padding: 18px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
    .airport-price-card:hover {
        background: #ffffff;
        border-color: #e4e6ef;
        box-shadow: 0 10px 30px rgba(0, 158, 247, 0.08);
        transform: translateY(-4px);
    }
    .airport-price-card .airport-name {
        font-weight: 600;
        color: #5e6278;
        font-size: 14px;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .airport-price-card .airport-name i {
        color: #a1a5b7;
        font-size: 13px;
        transition: 0.3s;
    }
    .airport-price-card:hover .airport-name i {
        color: #009ef7;
    }
    
    #priceGridContainer {
        max-height: 650px;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 10px;
    }
    
    /* Scrollbar styling for grid container */
    #priceGridContainer::-webkit-scrollbar {
        width: 6px;
    }
    #priceGridContainer::-webkit-scrollbar-track {
        background: transparent;
    }
    #priceGridContainer::-webkit-scrollbar-thumb {
        background: #e4e6ef;
        border-radius: 10px;
    }
    #priceGridContainer::-webkit-scrollbar-thumb:hover {
        background: #b5b5c3;
    }
    
    .price-input-group {
        border: 1px solid #e4e6ef;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        background: #fff;
        transition: 0.3s;
    }
    .price-input-group:focus-within {
        border-color: #009ef7;
        box-shadow: 0 0 0 3px rgba(0, 158, 247, 0.1);
    }
    .price-input-group .input-group-text {
        background: transparent;
        border: none;
        color: #a1a5b7;
        font-weight: 500;
        font-size: 13px;
        padding: 8px 12px;
    }
    .inp-price, .inp-tax {
        border: none;
        background: transparent;
        text-align: center;
        font-weight: 600;
        color: #181c32;
        padding: 8px 5px;
        width: 100%;
    }
    .inp-price:focus, .inp-tax:focus {
        outline: none;
        box-shadow: none;
        background: transparent;
    }
    .inp-price::placeholder, .inp-tax::placeholder {
        color: #b5b5c3;
        font-weight: 400;
    }
    
    /* Loading overlay */
    .loading-overlay {
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.8);
        display: none;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        z-index: 10;
    }
    .loading-overlay.show { display: flex; }
    
    /* Buttons */
    .btn-custom-primary {
        background-color: #009ef7;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 10px 25px;
        font-weight: 600;
        transition: all 0.3s;
    }
    .btn-custom-primary:hover {
        background-color: #0095e8;
        color: #fff;
    }
    .btn-custom-success {
        background-color: #50cd89;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 10px 25px;
        font-weight: 600;
        transition: all 0.3s;
    }
    .btn-custom-success:hover {
        background-color: #47be7d;
        color: #fff;
    }
    .btn-custom-danger {
        background-color: #f1416c;
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 6px 15px;
        font-size: 13px;
        font-weight: 600;
    }
    .badge-custom {
        padding: 5px 10px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
    }
    .badge-light-success { background: rgba(80, 205, 137, 0.1); color: #50cd89; }

/* --- Extracted from: header.php --- */
/* Premium Dashboard Header Styling */
        .dash-user-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .dash-user-info {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        .dash-user-name {
            font-size: 15px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.2px;
            margin-bottom: 2px;
        }
        .dash-user-role {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.1);
            padding: 3px 10px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
        }
        .status-dot {
            width: 6px;
            height: 6px;
            background-color: #50cd89;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 rgba(80, 205, 137, 0.4);
            animation: pulse-green 2s infinite;
        }
        @keyframes pulse-green {
            0% { box-shadow: 0 0 0 0 rgba(80, 205, 137, 0.7); }
            70% { box-shadow: 0 0 0 6px rgba(80, 205, 137, 0); }
            100% { box-shadow: 0 0 0 0 rgba(80, 205, 137, 0); }
        }
        
        .dash-avatar-btn {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, #009ef7 0%, #007bc4 100%);
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 158, 247, 0.3);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        .dash-avatar-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 158, 247, 0.4);
            color: #fff;
        }
        .dash-avatar-btn::after {
            display: none !important; /* Hide bootstrap dropdown arrow */
        }
        
        .dash-dropdown-menu {
            border: none;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            padding: 10px;
            min-width: 220px;
            margin-top: 15px !important;
            animation: dropFade 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            transform-origin: top right;
        }
        @keyframes dropFade {
            from { opacity: 0; transform: translateY(10px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        
        .dash-dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: 10px;
            color: #5e6278;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        .dash-dropdown-item i {
            font-size: 16px;
            color: #a1a5b7;
            transition: all 0.2s ease;
        }
        .dash-dropdown-item:hover {
            background: #f1faff;
            color: #009ef7;
        }
        .dash-dropdown-item:hover i {
            color: #009ef7;
        }
        
        .dash-dropdown-item.logout {
            color: #f1416c;
            background: #fff5f8;
            margin-top: 5px;
        }
        .dash-dropdown-item.logout i {
            color: #f1416c;
        }
        .dash-dropdown-item.logout:hover {
            background: #f1416c;
            color: #ffffff;
        }
        .dash-dropdown-item.logout:hover i {
            color: #ffffff;
        }

/* --- Login Page Header Fix --- */
.login-header-bg {
    background-color: #1e1e2d !important;
    position: relative !important;
    padding: 15px 0;
}
.login-header-bg .dash-avatar-btn {
    border: 1px solid rgba(255,255,255,0.2) !important;
}

/* --- Extracted from: index.php --- */
.dashboard-stats-card {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        display: flex;
        align-items: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        border: 1px solid #f0f2f5;
        transition: transform 0.3s ease;
    }
    .dashboard-stats-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    }
    .stats-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-right: 20px;
        flex-shrink: 0;
    }
    .icon-blue { background: rgba(0, 158, 247, 0.1); color: #009ef7; }
    .icon-green { background: rgba(80, 205, 137, 0.1); color: #50cd89; }
    .icon-purple { background: rgba(114, 57, 234, 0.1); color: #7239ea; }
    .icon-orange { background: rgba(255, 169, 63, 0.1); color: #ffa93f; }
    
    .stats-info h3 {
        font-size: 28px;
        font-weight: 700;
        color: #181c32;
        margin: 0 0 5px 0;
    }
    .stats-info span {
        font-size: 14px;
        color: #a1a5b7;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .recent-orders-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        border: 1px solid #f0f2f5;
        overflow: hidden;
    }
    .card-header-custom {
        padding: 20px 25px;
        border-bottom: 1px solid #f0f2f5;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
    }
    .card-header-custom h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: #181c32;
    }
    .btn-view-all {
        background: #f1faff;
        color: #009ef7;
        padding: 8px 15px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
    }
    .btn-view-all:hover {
        background: #009ef7;
        color: #fff;
    }

/* --- Extracted from: profile.php --- */
.user-dashboard-content { background-color: #f8f9fa; padding: 30px; border-radius: 12px; }
    .section-card { background: #fff; border: none; border-radius: 12px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); margin-bottom: 30px; }
    .section-title-bar { display: flex; align-items: center; justify-content: space-between; padding: 20px 25px; border-bottom: 1px solid #eff2f5; background-color: #fff; border-radius: 12px 12px 0 0; }
    .section-title-bar h4 { margin: 0; font-size: 18px; font-weight: 700; color: #181c32; }
    .form-control { border-radius: 8px; padding: 12px 15px; border: 1px solid #e4e6ef; transition: 0.3s; }
    .form-control:focus { border-color: #009ef7; box-shadow: 0 0 0 0.25rem rgba(0, 158, 247, 0.25); }
    .form-label { font-weight: 600; color: #3f4254; margin-bottom: 8px; font-size: 14px; }
    .btn-save { background: #009ef7; color: #fff; padding: 12px 30px; border-radius: 8px; font-weight: 600; border: none; transition: 0.3s; }
    .btn-save:hover { background: #008be1; box-shadow: 0 4px 10px rgba(0, 158, 247, 0.3); }
    .alert-custom { border-radius: 8px; padding: 15px 20px; font-weight: 500; font-size: 14px; margin-bottom: 25px; }

/* --- Extracted from: transfer-detail.php --- */
.user-dashboard-content { background-color: #f8f9fa; padding: 30px; border-radius: 12px; }
    .section-card { background: #fff; border: none; border-radius: 12px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); margin-bottom: 30px; }
    .section-title-bar { display: flex; align-items: center; justify-content: space-between; padding: 20px 25px; border-bottom: 1px solid #eff2f5; background-color: #fff; border-radius: 12px 12px 0 0; }
    .section-title-bar h4 { margin: 0; font-size: 18px; font-weight: 700; color: #181c32; }
    .btn-back { background: #f8f9fa; color: #5e6278; border: 1px solid #e4e6ef; padding: 8px 15px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; transition: 0.3s; }
    .btn-back:hover { background: #e4e6ef; color: #181c32; }
    
    .info-group { margin-bottom: 20px; }
    .info-label { font-size: 12px; color: #a1a5b7; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 5px; }
    .info-value { font-size: 15px; color: #3f4254; font-weight: 500; }
    
    .route-box { background: #f1faff; border: 1px dashed #009ef7; border-radius: 8px; padding: 20px; margin-bottom: 30px; position: relative; }
    .route-line { position: absolute; left: 35px; top: 40px; bottom: 40px; width: 2px; background: #009ef7; border-left: 2px dashed #009ef7; opacity: 0.3; }
    .route-point { display: flex; align-items: flex-start; gap: 15px; position: relative; z-index: 1; }
    .route-point:not(:last-child) { margin-bottom: 30px; }
    .route-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; flex-shrink: 0; }
    .icon-start { background: #50cd89; }
    .icon-end { background: #f1416c; }
    .route-text h5 { margin: 0 0 5px 0; font-size: 16px; font-weight: 700; color: #181c32; }
    .route-text p { margin: 0; font-size: 14px; color: #5e6278; }
    
    .badge { padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
    .badge-light-primary { background: rgba(0, 158, 247, 0.1); color: #009ef7; }
    .badge-light-success { background: rgba(80, 205, 137, 0.1); color: #50cd89; }
    .badge-light-info { background: rgba(114, 57, 234, 0.1); color: #7239ea; }
    .badge-light-warning { background: rgba(255, 169, 63, 0.1); color: #ffa93f; }
    .badge-light-danger { background: rgba(241, 65, 108, 0.1); color: #f1416c; }

/* --- Extracted from: transfers.php --- */
.user-dashboard-content {
        background-color: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
    }
    .section-card {
        background: #fff;
        border: none;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }
    .section-title-bar {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px 25px;
        border-bottom: 1px solid #eff2f5;
        background-color: #fff;
        border-radius: 12px 12px 0 0;
    }
    .section-title-bar h4 { margin: 0; font-size: 18px; font-weight: 700; color: #181c32; }
    .icon-box { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
    .icon-blue { background: rgba(0, 158, 247, 0.1); color: #009ef7; }
    .table-modern { width: 100%; border-collapse: separate; border-spacing: 0 10px; }
    .table-modern th { background: transparent; padding: 10px 20px; font-size: 12px; font-weight: 600; color: #a1a5b7; text-transform: uppercase; letter-spacing: 0.5px; border: none; }
    .table-modern td { background: #fff; padding: 20px; vertical-align: middle; border: 1px solid #f0f2f5; border-style: solid none; font-size: 14px; color: #3f4254; font-weight: 500; transition: 0.3s; }
    .table-modern td:first-child { border-left: 1px solid #f0f2f5; border-radius: 12px 0 0 12px; }
    .table-modern td:last-child { border-right: 1px solid #f0f2f5; border-radius: 0 12px 12px 0; }
    .table-modern tr:hover td { box-shadow: 0 5px 15px rgba(0,0,0,0.05); transform: translateY(-2px); z-index: 10; position: relative; }
    
    .symbol { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; }
    .symbol-customer { background: #f1faff; color: #009ef7; }
    
    .btn-detail { background: #fff; color: #009ef7; border: 1px solid #009ef7; padding: 8px 16px; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600; transition: 0.3s; display: inline-flex; align-items: center; gap: 6px; }
    .btn-detail:hover { background: #009ef7; color: #fff; box-shadow: 0 4px 10px rgba(0, 158, 247, 0.3); }
    .badge { padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
    .badge-light-primary { background: rgba(0, 158, 247, 0.1); color: #009ef7; }
    .badge-light-success { background: rgba(80, 205, 137, 0.1); color: #50cd89; }
    .badge-light-info { background: rgba(114, 57, 234, 0.1); color: #7239ea; }
    .badge-light-warning { background: rgba(255, 169, 63, 0.1); color: #ffa93f; }
    .badge-light-danger { background: rgba(241, 65, 108, 0.1); color: #f1416c; }


/* --- Modern Pagination --- */
.pagination-modern { gap: 8px; margin: 0; }
.pagination-modern .page-item .page-link { border: none; border-radius: 8px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: #5e6278; font-weight: 600; font-size: 14px; background: #f8f9fa; transition: 0.3s; padding: 0; }
.pagination-modern .page-item .page-link:hover { background: #e4e6ef; color: #009ef7; }
.pagination-modern .page-item.active .page-link { background: #009ef7; color: #fff; box-shadow: 0 4px 10px rgba(0, 158, 247, 0.3); }
.pagination-modern .page-item .page-link i { font-size: 12px; }

/* --- Dropdown Fix & Login Header Fix --- */
.dash-dropdown-menu { right: 0 !important; left: auto !important; }
.login-header { background-color: #1e1e2d !important; position: relative !important; padding: 15px 0; }
.login-header .dash-avatar-btn { border: 1px solid rgba(255,255,255,0.2) !important; }

/* ===== ASB – Airport SideBar (100% standalone mobile sidebar) ===== */
.asb-toggle {
    cursor: pointer;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.asb-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.asb-backdrop.asb-open {
    opacity: 1;
    visibility: visible;
}

.asb-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 290px;
    max-width: 85vw;
    background-color: #050b20;
    z-index: 999999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.asb-panel.asb-open {
    transform: translateX(0);
}

.asb-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
    z-index: 2;
}
.asb-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.asb-logo {
    text-align: center;
    padding: 40px 30px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.asb-logo img {
    max-width: 160px;
    height: auto;
}

.asb-menu {
    list-style: none;
    margin: 0;
    padding: 20px 20px 30px;
    flex: 1;
}
.asb-menu li {
    margin-bottom: 4px;
}
.asb-menu li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
}
.asb-menu li a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.asb-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.asb-logout {
    color: #f1416c !important;
}
.asb-logout:hover {
    background: rgba(241, 65, 108, 0.1) !important;
}
.asb-logout .asb-icon {
    stroke: #f1416c;
}

/* Desktop: hide the mobile sidebar completely */
@media (min-width: 1200px) {
    .asb-toggle,
    .asb-panel,
    .asb-backdrop {
        display: none !important;
    }
}

/* Mobile: hide the old theme sidebar (replaced by ASB panel) */
@media (max-width: 1199px) {
    .dashboard-widget .side-bar {
        display: none !important;
    }
}
