 
        * { box-sizing: border-box; }
        html { overflow-x: hidden; }
        body { font-family: 'Poppins', sans-serif; background: #f0f2f8; }

        /* ===== SIDEBAR ===== */
        @media (max-width: 1199px) {
            .dashboard-slidebar {
                position: fixed;
                inset-inline-start: 0px;
                top: 0px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 9999;
                height: 100vh;
                overflow-y: auto;
            }
        }
        .dashboard-slidebar.active { transform: translateX(0); }

        /* ===== SIDEBAR OVERLAY ===== */
        #sidebarOverlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 10000;
            cursor: pointer;
        }
        /* #sidebarOverlay.active {
            display: flex !important;
        } */

       

        /* ===== SIDEBAR ===== */
        .dashboard-slidebar {
            background: white;
            width: 260px;
            min-width: 260px;
            flex-shrink: 0;
        }

        @media (max-width: 1199px) {
            .dashboard-slidebar {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 320px !important;
                min-width: 270px !important;
                height: 100dvh !important;
                overflow-y: auto !important;
                z-index: 10001 !important;
                box-shadow: 6px 0 30px rgba(0,0,0,0.25) !important;
                transform: translateX(-100%) !important;
                transition: transform 0.3s ease !important;
            }
            .dashboard-slidebar.sidebar-open {
                transform: translateX(0) !important;
            }
        }

        #sidebarToggle { display: none; }
        @media (max-width: 1199px) { #sidebarToggle { display: block; } }

        #sidebarCloseBtn { display: none; }
        @media (max-width: 1199px) { #sidebarCloseBtn { display: flex; } }
        @media (min-width: 1200px) { #sidebarCloseBtn { display: none !important; } }

        /* ===== PROFILE PHOTO AREA ===== */
        .profile-photo-wrap {
            position: relative;
            width: 90px; height: 90px;
            margin: 0 auto 4px;
        }
        .photo-circle {
            width: 90px; height: 90px;
            border-radius: 50%;
            border: 3px solid #11948f;
            overflow: hidden;
            background: #f3f4f6;
        }
        .photo-circle img {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
        }
        .photo-hover-overlay {
            position: absolute; inset: 0;
            border-radius: 50%;
            background: rgba(0,0,0,0);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }
        .profile-photo-wrap:hover .photo-hover-overlay { background: rgba(0,0,0,0.38); }
        .photo-hover-overlay i { color: white; font-size: 20px; opacity: 0; transition: opacity 0.2s; }
        .profile-photo-wrap:hover .photo-hover-overlay i { opacity: 1; }

        .photo-actions {
            display: flex; justify-content: center; gap: 8px; margin-top: 7px;
        }
        .photo-action-btn {
            width: 30px; height: 30px;
            border-radius: 50%; border: none;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 13px; color: white;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .photo-action-btn:hover { transform: scale(1.15); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
        .btn-cam-photo  { background: #11948f; }
        .btn-edit-photo { background: #6B46C1; }
        .btn-del-photo  { background: #ef4444; }

        #cameraVideoEl { width: 100%; border-radius: 12px; display: none; background: #000; }
        #cameraCanvas { display: none; }
        .cam-snap-btn {
            width: 54px; height: 54px;
            border-radius: 50%; border: 4px solid white;
            background: #ef4444;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; color: white; font-size: 20px;
            box-shadow: 0 4px 12px rgba(239,68,68,0.4);
            transition: transform 0.15s;
        }
        .cam-snap-btn:hover { transform: scale(1.08); }

        /* ===== TOAST ===== */
        #toast-container {
            position: fixed; top: 20px; right: 20px; z-index: 99999;
            display: flex; flex-direction: column; gap: 10px;
        }
        .toast-msg {
            background: white; padding: 13px 18px; border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            display: flex; align-items: center; gap: 10px;
            min-width: 260px; max-width: 360px;
            animation: slideInToast 0.3s ease;
            border-left: 4px solid #10b981; font-size: 13px; font-weight: 500;
        }
        .toast-msg.success { border-left-color: #10b981; }
        .toast-msg.error   { border-left-color: #ef4444; }
        .toast-msg.info    { border-left-color: #3b82f6; }
        .toast-msg.warning { border-left-color: #f59e0b; }
        .toast-icon { font-size: 18px; flex-shrink: 0; }
        .toast-msg.success .toast-icon { color: #10b981; }
        .toast-msg.error   .toast-icon { color: #ef4444; }
        .toast-msg.info    .toast-icon { color: #3b82f6; }
        .toast-msg.warning .toast-icon { color: #f59e0b; }
        @keyframes slideInToast { from { transform: translateY(-10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

        /* ===== MODAL ===== */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6); z-index: 99999;
            display: flex; align-items: center; justify-content: center; padding: 15px;
        }
        .modal-box {
            background: white; border-radius: 14px; max-width: 420px; width: 100%;
            max-height: 88vh; overflow: hidden; display: flex; flex-direction: column;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideInToast 0.3s ease;
        }
        .modal-header-bar {
            padding: 14px 18px; border-bottom: 1px solid #e5e7eb;
            display: flex; justify-content: space-between; align-items: center;
            background: linear-gradient(135deg, #100958 0%, #1a1a6e 100%); color: white;
        }
        .modal-header-bar h5 { margin: 0; font-size: 15px; font-weight: 600; color: white; }
        .modal-close-btn {
            background: rgba(255,255,255,0.2); border: none; color: white;
            width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
            font-size: 15px; display: flex; align-items: center; justify-content: center;
        }
        .modal-close-btn:hover { background: rgba(255,255,255,0.35); }
        .modal-body-content { padding: 16px 18px; overflow-y: auto; flex: 1; }

        /* ===== MAIN CONTENT COMPACT DESIGN ===== */
        .dash-main {
            padding: 0;
        }

        /* Greeting Banner */
        .greeting-banner {
            background: linear-gradient(135deg, #0f0c47 0%, #11948f 100%);
            border-radius: 16px;
            padding: 18px 20px;
            color: #fff;
            margin-bottom: 16px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(17,148,143,0.3);
        }
        .greeting-banner::before {
            content: '';
            position: absolute; top: -30px; right: -30px;
            width: 110px; height: 110px;
            background: rgba(255,255,255,0.06); border-radius: 50%;
        }
        .greeting-banner::after {
            content: '';
            position: absolute; bottom: -20px; left: 30%;
            width: 70px; height: 70px;
            background: rgba(255,255,255,0.04); border-radius: 50%;
        }
        .greeting-top { display: flex; align-items: center; justify-content: space-between;flex-wrap: wrap; position: relative; z-index: 2; }
        .greeting-text p { margin: 0; font-size: 11px; opacity: 0.75; letter-spacing: 0.4px; text-transform: uppercase; }
        .greeting-text h4 { margin: 3px 0 0; font-size: 17px; font-weight: 400; color: #a7f3d0; }
        .greeting-badge {
            background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 600;
        }
        .greeting-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 14px; position: relative; z-index: 2; }
        .g-stat { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 10px 12px; }
        .g-stat-label { font-size: 9px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
        .g-stat-value { font-size: 14px; font-weight: 400; }
        .g-stat-value.green { color: #6ee7b7; }
        .g-stat-value.red { color: #fca5a5; }
        .g-stat-value.yellow { color: #fde68a; }

        /* Ticker */
        .ticker-wrap {
            background: #fff; border-radius: 10px; padding: 7px 0; margin-bottom: 14px;
            overflow: hidden; border: 1px solid #e8ebf5;
            box-shadow: 0 2px 6px rgba(0,0,0,0.03);
        }
        .ticker-inner {
            display: flex; gap: 32px;
            animation: ticker 18s linear infinite;
            white-space: nowrap; padding: 0 16px;
        }
        .ticker-item {
            font-size: 10px; font-weight: 600; color: #11948f;
            display: flex; align-items: center; gap: 5px; flex-shrink: 0;
        }
        .ticker-dot { width: 5px; height: 5px; background: #10b981; border-radius: 50%; }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* Quick Actions Banner */
        .qa-banner {
            background:  linear-gradient(135deg, #4a078c 0%, #230440 60%, #4b04ba 100%);
            border-radius: 14px; padding: 14px 16px; margin-bottom: 14px;
            box-shadow: 0 5px 18px rgba(79,70,229,0.3); position: relative; overflow: hidden;
        }
        .qa-banner::before {
            content: ''; position: absolute; top: -25px; right: -25px;
            width: 100px; height: 100px; background: rgba(255,255,255,0.06); border-radius: 50%;
        }
        .qa-items { display: flex; gap: 6px; justify-content: space-around; position: relative; z-index: 2; }
        .qa-item {
            flex: 1; text-align: center; color: #fff; cursor: pointer;
            padding: 6px 4px; border-radius: 10px; transition: all 0.2s;
        }
        .qa-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
        .qa-icon {
            width: 40px; height: 40px; background: rgba(255,255,255,0.15);
            border-radius: 10px; display: flex; align-items: center; justify-content: center;
            margin: 0 auto 6px; font-size: 16px; position: relative;
            backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15);
        }
        .qa-badge {
            position: absolute; top: -5px; right: -5px;
            background: #f97316; color: #fff; font-size: 7px; font-weight: 700;
            padding: 2px 5px; border-radius: 10px; white-space: nowrap;
        }
        .qa-badge.green { background: #10b981; }
        .qa-label { font-size: 10px; font-weight: 600; line-height: 1.2; }

        /* Stats Row */
        .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
        .stat-card {
            background: #fff; border-radius: 12px; padding: 14px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05); border: 1px solid #e8ebf5;
            display: flex; align-items: center; gap: 12px;
        }
        .stat-icon {
            width: 40px; height: 40px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
        }
        .stat-icon.income { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #10b981; }
        .stat-icon.expense { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #ef4444; }
        .stat-info { flex: 1; }
        .stat-label { font-size: 9px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; margin: 0 0 2px; }
        .stat-value { font-size: 15px; font-weight: 800; color: #1e293b; margin: 0; }

        /* Paygen Cash */
        .cash-banner {
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
            border-radius: 12px; padding: 12px 16px;
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 14px; box-shadow: 0 4px 14px rgba(30,27,75,0.25);
        }
        .cash-banner-left p { color: rgba(255,255,255,0.7); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 2px; }
        .cash-banner-left h3 { color: #fff; font-size: 20px; font-weight: 800; margin: 0; }
        .cash-banner-left h3 span { color: #fbbf24; }
        .cash-coin {
            width: 44px; height: 44px; background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 20px; color: white; box-shadow: 0 3px 10px rgba(251,191,36,0.4);
        }

        /* Services */
        .bc-section {
            background: #fff; border-radius: 14px; padding: 16px;
            margin-bottom: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border: 1px solid #e8ebf5;
        }
        .bc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
        .bc-logo { display: flex; align-items: center; gap: 8px; }
        .bc-logo-icon {
            width: 28px; height: 28px; background: linear-gradient(135deg, #4f46e5, #7c3aed);
            border-radius: 6px; display: flex; align-items: center; justify-content: center;
            color: #fff; font-weight: 800; font-size: 11px;
        }
        .bc-logo-text { font-size: 13px; font-weight: 700; }
        .bc-logo-text .blue { color: #4f46e5; }
        .bc-logo-text .red { color: #ef4444; }
        .view-all-link { font-size: 11px; color: #4f46e5; font-weight: 600; text-decoration: none; }

        .service-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
        }
        .service-item {
            text-align: center; cursor: pointer; padding: 10px 6px;
            border-radius: 10px; transition: all 0.2s; border: 2px solid transparent;
        }
        .service-item:hover { background: #f8f7ff; border-color: #e0e7ff; transform: translateY(-2px); }
        .service-icon {
            width: 44px; height: 44px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 6px; font-size: 18px; position: relative;
        }
        .service-icon.credit    { background: linear-gradient(135deg, #fff0f0, #ffe4e4); }
        .service-icon.electricity { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
        .service-icon.fastag    { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
        .service-icon.education { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
        .service-icon.water     { background: linear-gradient(135deg, #ecfeff, #cffafe); }
        .service-icon.gas       { background: linear-gradient(135deg, #fff7ed, #ffedd5); }
        .service-icon.mobile    { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
        .service-icon.internet  { background: linear-gradient(135deg, #fdf4ff, #fae8ff); }
        .service-icon.insurance { background: linear-gradient(135deg, #fefce8, #fef9c3); }
        .service-badge {
            position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
            background: #ef4444; color: #fff; font-size: 7.5px; font-weight: 700;
            padding: 2px 6px; border-radius: 20px; letter-spacing: 0.3px; white-space: nowrap;
        }
        .service-label { font-size: 9.5px; font-weight: 600; color: #334155; line-height: 1.2; }

        /* Help Card */
        .help-card {
            background: #fff; border-radius: 12px; padding: 12px 16px;
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border: 1px solid #e8ebf5;
        }
        .help-card-left { display: flex; align-items: center; gap: 12px; }
        .help-icon {
            width: 36px; height: 36px; background: linear-gradient(135deg, #dcfce7, #bbf7d0);
            border-radius: 10px; display: flex; align-items: center; justify-content: center;
            color: #10b981; font-size: 16px; flex-shrink: 0;
        }
        .help-card-text h6 { font-size: 13px; font-weight: 700; color: #1e293b; margin: 0 0 1px; }
        .help-card-text p { font-size: 10px; color: #64748b; margin: 0; }
        .whatsapp-btn {
            width: 36px; height: 36px; background: #25D366;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 18px; color: #fff; cursor: pointer;
            box-shadow: 0 3px 10px rgba(37,211,102,0.35);
            transition: transform 0.2s; flex-shrink: 0;
        }
        .whatsapp-btn:hover { transform: scale(1.1); }

        /* Transactions */
        .txn-section {
            background: #fff; border-radius: 14px; padding: 16px;
            margin-bottom: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border: 1px solid #e8ebf5;
        }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
        .section-title { font-size: 13px; font-weight: 700; color: #1e293b; margin: 0; }

        .txn-item {
            display: flex; align-items: center; gap: 10px;
            padding: 9px 0; border-bottom: 1px solid #f1f5f9;
            cursor: pointer; transition: background 0.2s; border-radius: 6px;
        }
        .txn-item:last-child { border-bottom: none; padding-bottom: 0; }
        .txn-item:first-child { padding-top: 0; }
        .txn-icon {
            width: 34px; height: 34px; border-radius: 9px;
            display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
        }
        .txn-info { flex: 1; min-width: 0; }
        .txn-name { font-size: 11.5px; font-weight: 600; color: #1e293b; margin: 0 0 1px; }
        .txn-date { font-size: 9.5px; color: #94a3b8; margin: 0; }
        .txn-amount { font-size: 12px; font-weight: 700; white-space: nowrap; }
        .txn-amount.debit { color: #ef4444; }
        .txn-amount.credit { color: #10b981; }

        /* Mobile */
        @media (max-width: 768px) {
            .service-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
            .qa-items { gap: 4px; }
            .greeting-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
            .greeting-stats .g-stat:last-child { display: none; }
        }
        @media (max-width: 480px) {
            .stats-row { grid-template-columns: 1fr 1fr; gap: 8px; }
        }
        @media screen and ((min-width:320px) and (max-width:720px)) {
            .flex-grow-1 { width: 100% !important; }
        }
        @media (min-width: 1400px) {
            .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { max-width: 1450px; }
        }
         .tw-h-333-px {
    height: 250px;
}

/* ─── NOTIFICATION OFFCANVAS STYLES ─── */
.notif-offcanvas-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 10050;
    backdrop-filter: blur(2px);
}
.notif-offcanvas-backdrop.active { display: block; }

.notif-offcanvas {
    position: fixed;
    top: 0; right: 0;
    width: 380px;
    max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 10051;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(16,9,88,0.18);
}
.notif-offcanvas.active { transform: translateX(0); }

.notif-oc-header {
    background: linear-gradient(135deg, #100958 0%, #11948f 100%);
    padding: 18px 20px 14px;
    flex-shrink: 0;
}
.notif-oc-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.notif-oc-title { color: white; font-size: 16px; font-weight: 700; margin: 0; }
.notif-oc-close {
    background: rgba(255,255,255,0.18);
    border: none;
    color: white;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
.notif-oc-close:hover { background: rgba(255,255,255,0.32); }

/* Stats strip */
.notif-oc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.notif-stat-pill {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 8px 6px;
    text-align: center;
    backdrop-filter: blur(8px);
}
.notif-stat-num { font-size: 18px; font-weight: 700; color: #fff; line-height: 1; }
.notif-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.75); margin-top: 2px; }

/* Tabs */
.notif-oc-tabs {
    display: flex;
    background: #f8f9fb;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}
.notif-tab {
    flex: 1;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.notif-tab.active { color: #100958; border-bottom-color: #11948f; background: white; }
.notif-tab-badge {
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 10px;
    min-width: 18px;
}
.notif-tab.active .notif-tab-badge { background: #11948f; }

/* Body scroll area */
.notif-oc-body {
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
}
.notif-oc-body::-webkit-scrollbar { width: 4px; }
.notif-oc-body::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

/* Tab panels */
.notif-panel { display: none; }
.notif-panel.active { display: block; }

/* Section header */
.notif-section-hdr {
    padding: 12px 16px 6px;
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Notification item */
.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    position: relative;
    transition: background 0.15s;
}
.notif-item:hover { background: #f9fafb; }
.notif-item.unread { background: #f0f9ff; }
.notif-item.unread::before { content: ''; position: absolute; left: 6px; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: #11948f; }

.notif-item-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.notif-item-body { flex: 1; min-width: 0; }
.notif-item-title { font-size: 12px; font-weight: 600; color: #1f2937; margin-bottom: 2px; line-height: 1.4; }
.notif-item-desc { font-size: 11px; color: #6b7280; line-height: 1.4; margin-bottom: 3px; }
.notif-item-time { font-size: 10px; color: #9ca3af; }
.notif-item-amount { font-size: 13px; font-weight: 700; white-space: nowrap; flex-shrink: 0; }

/* Bill / Transaction card */
.bill-card {
    margin: 8px 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.bill-card-header {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bill-card-title { font-size: 12px; font-weight: 700; color: white; }
.bill-card-badge { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 20px; background: rgba(255,255,255,0.25); color: white; }
.bill-card-body { background: white; padding: 10px 14px; }
.bill-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #f3f4f6; }
.bill-row:last-child { border-bottom: none; }
.bill-row-left { display: flex; align-items: center; gap: 8px; }
.bill-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.bill-label { font-size: 11px; font-weight: 600; color: #374151; }
.bill-sub { font-size: 10px; color: #9ca3af; }
.bill-amount { font-size: 12px; font-weight: 700; }
.bill-due { font-size: 10px; color: #ef4444; font-weight: 500; }
.bill-pay-btn {
    font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s;
}
.bill-pay-btn:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

/* Mark all read bar */
.notif-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #f8f9fb;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}
.notif-count-txt { font-size: 12px; color: #6b7280; }
.mark-all-btn { font-size: 11px; color: #11948f; font-weight: 600; border: none; background: transparent; cursor: pointer; padding: 0; }
.mark-all-btn:hover { text-decoration: underline; }

/* Footer of offcanvas */
.notif-oc-footer {
    padding: 12px 16px;
    border-top: 1px solid #e5e7eb;
    background: #f8f9fb;
    flex-shrink: 0;
}
.notif-view-all {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #100958, #11948f);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.notif-view-all:hover { opacity: 0.9; color: white; }

/* Shaking animation for bell */
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}
.shaking-animation {
    animation: shake 2s infinite;
}

@media (max-width:320px) {
    .profile_pic{
        width: 60px !important;
        height: 40px !important;
    }
}
    