 
    /* ===================================================
       1. GLOBAL STYLES & VARIABLES
       =================================================== */
    :root {
      --bg-color: #f7f9fa;
      --card-bg: #ffffff;
      --card-sub-bg: #f0f4f8;
      --text-main: #0c1c38;
      --text-sub: #7a869a;
      --primary-accent: #f5a623;
      --primary-light: #fff5e6;
      --border-color: #eef2f5;
      --nav-bg: #ffffff;
      --nav-item-active: #f5a623;
      --nav-item-inactive: #9aa5b5;
      --danger-color: #d93838;
      --success-color: #27ae60;
    }

    [data-theme="dark"] {
      --bg-color: #0d1117;
      --card-bg: #161b22;
      --card-sub-bg: #21262d;
      --text-main: #f0f6fc;
      --text-sub: #8b949e;
      --border-color: #30363d;
      --nav-bg: #161b22;
      --nav-item-inactive: #6e7681;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      background-color: var(--bg-color);
      color: var(--text-main);
      height: 100vh;
      overflow: hidden;
      transition: background-color 0.3s, color 0.3s;
    }

    .app-container {
      width: 100%;
      height: 100vh;
      position: relative;
      overflow-y: auto;
      padding-bottom: 75px;
    }

    .page {
      display: none;
      padding: 20px;
      max-width: 900px;
      margin: 0 auto;
      animation: fadeIn 0.2s ease-in-out;
    }

    .page.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .page-header-title {
      text-align: center;
      font-size: 18px;
      font-weight: 700;
      color: var(--primary-accent);
      margin-bottom: 25px;
      position: relative;
    }

    .back-btn {
      position: absolute;
      left: 0;
      top: 0;
      font-size: 20px;
      color: var(--text-main);
      cursor: pointer;
    }

    .section-category {
      font-size: 12px;
      font-weight: 800;
      color: var(--text-sub);
      letter-spacing: 0.8px;
      margin: 20px 0 10px 4px;
      text-transform: uppercase;
    }

    /* ===================================================
       2. HOME PAGE DESIGN
       =================================================== */
    .home-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
    }

    .user-greeting { font-size: 14px; color: var(--text-sub); }
    .user-name { font-weight: 700; font-size: 16px; color: var(--text-main); }

    .header-actions {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid var(--primary-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--primary-accent);
      font-size: 14px;
    }

    .bell-icon {
      font-size: 22px;
      color: var(--text-main);
      position: relative;
      cursor: pointer;
      transition: color 0.2s;
    }
    
    .bell-icon:hover { color: var(--primary-accent); }

    .bell-icon::after {
      content: '';
      position: absolute;
      top: -2px;
      right: 0;
      width: 8px;
      height: 8px;
      background-color: var(--danger-color);
      border-radius: 50%;
    }

    .balance-card {
      text-align: center;
      margin-bottom: 25px;
      background: var(--card-bg);
      padding: 24px;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }

    .pill-toggle {
      background: var(--card-sub-bg);
      display: inline-flex;
      padding: 4px;
      border-radius: 20px;
      margin-bottom: 15px;
    }

    .pill-btn {
      padding: 6px 18px;
      border-radius: 16px;
      font-size: 13px;
      font-weight: 600;
      border: none;
      background: transparent;
      color: var(--text-sub);
      cursor: pointer;
    }

    .pill-btn.active {
      background: var(--card-bg);
      color: var(--text-main);
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .balance-amount {
      font-size: 38px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .balance-val {
      transition: filter 0.3s ease, opacity 0.3s ease;
      user-select: none;
    }

    .balance-val.blurred {
      filter: blur(8px);
      opacity: 0.5;
    }

    .currency { font-size: 24px; font-weight: 600; }
    .eye-icon { 
      font-size: 18px; 
      margin-left: 5px; 
      cursor: pointer; 
      transition: color 0.2s ease;
    }
    .eye-icon:hover { color: var(--primary-accent); }

    .account-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid var(--primary-accent);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      margin-top: 10px;
    }

    .account-type {
      text-align: center;
      font-size: 13px;
      color: var(--text-sub);
      margin-top: 10px;
    }

    .pagination-dots {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }

    .dot {
      width: 6px;
      height: 6px;
      background-color: #0c1c38;
      border-radius: 50%;
    }

    .action-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      margin-bottom: 25px;
    }

    .action-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .action-btn {
      width: 100%;
      max-width: 80px;
      aspect-ratio: 1;
      background-color: var(--primary-light);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--primary-accent);
      border: none;
    }

    .action-label { font-size: 12px; font-weight: 600; }

    .transactions-card {
      background-color: var(--card-bg);
      border-radius: 24px;
      padding: 20px;
    }

    .tx-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .tx-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid var(--border-color);
      cursor: pointer;
    }

    .tx-item:last-child { border-bottom: none; }

    .tx-left-box {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .tx-arrow-icon { font-size: 16px; }
    .tx-arrow-icon.out { color: var(--danger-color); transform: rotate(45deg); }
    .tx-arrow-icon.in { color: var(--success-color); transform: rotate(-135deg); }

    /* ===================================================
       3. TRANSFERS PAGE DESIGN
       =================================================== */
    .transfer-section-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 15px;
    }

    .transfer-card {
      background: var(--card-sub-bg);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }

    .transfer-left {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .transfer-icon {
      font-size: 22px;
      color: var(--text-main);
      margin-top: 2px;
      width: 28px;
    }

    .transfer-info h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    .transfer-info p {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.4;
    }

    .transfer-arrow {
      font-size: 16px;
      color: var(--text-main);
      margin-left: 10px;
    }

    /* ===================================================
       4. CARDS PAGE DESIGN (FIXED FLIP CARD EFFECT)
       =================================================== */
    .cards-container {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .card-flip-container {
      width: 100%;
      max-width: 420px;
      height: 250px;
      perspective: 1000px;
      margin-bottom: 10px;
      cursor: pointer;
    }

    .card-inner {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card-flip-container.flipped .card-inner {
      transform: rotateY(180deg);
    }

    .card-front, .card-back {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      border-radius: 24px;
      padding: 25px;
      color: #ffffff;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .card-front {
      z-index: 2;
      transform: rotateY(0deg);
    }

    .card-back {
      transform: rotateY(180deg);
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-front::before, .card-back::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -20%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(245, 166, 35, 0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .card-front::after {
      content: '';
      position: absolute;
      bottom: -40%;
      left: -20%;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(0, 180, 216, 0.25) 0%, transparent 70%);
      pointer-events: none;
    }

    .mc-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 2;
    }

    .mc-bank-name {
      font-weight: 800;
      font-size: 20px;
      letter-spacing: 1.5px;
      color: var(--primary-accent);
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .mc-chip-row {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 10px;
      z-index: 2;
    }

    .mc-chip {
      width: 48px;
      height: 36px;
      background: linear-gradient(135deg, #ffe066 0%, #f5a623 50%, #d4af37 100%);
      border-radius: 7px;
      box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
      position: relative;
    }

    .mc-chip::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background: rgba(0,0,0,0.2);
    }

    .mc-contactless {
      font-size: 20px;
      opacity: 0.9;
      transform: rotate(90deg);
    }

    .mc-number {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 3.5px;
      font-family: 'Courier New', Courier, monospace;
      margin-top: 10px;
      z-index: 2;
      text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    }

    .mc-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      z-index: 2;
    }

    .mc-holder {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      opacity: 0.75;
    }

    .mc-name {
      font-size: 15px;
      font-weight: 700;
      margin-top: 3px;
      letter-spacing: 1px;
    }

    .mc-logo {
      display: flex;
      align-items: center;
    }

    .mc-circle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
    }

    .mc-circle.red { background-color: #eb001b; }
    .mc-circle.yellow { background-color: #f79e1b; margin-left: -12px; opacity: 0.9; }

    .card-stripe {
      width: 100%;
      height: 45px;
      background: #111;
      margin-top: 25px;
    }

    .card-cvv-box {
      padding: 0 25px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .cvv-label {
      font-size: 10px;
      margin-bottom: 4px;
      opacity: 0.8;
    }

    .cvv-white-bar {
      width: 100%;
      background: #fff;
      height: 35px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 15px;
      color: #000;
      font-weight: 800;
      font-family: monospace;
      letter-spacing: 2px;
    }

    .card-back-text {
      padding: 0 25px 20px 25px;
      font-size: 10px;
      opacity: 0.6;
      line-height: 1.4;
    }

    .cards-grid-extra {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 15px;
    }

    .extra-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 24px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.03);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .extra-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(245, 166, 35, 0.15);
      border-color: var(--primary-accent);
    }

    .extra-card-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--primary-light);
      color: var(--primary-accent);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 50px;
    }

    .extra-card-icon {
      font-size: 30px;
      color: var(--primary-accent);
      margin-bottom: 15px;
      width: 55px;
      height: 55px;
      background: var(--card-sub-bg);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .extra-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .extra-card-desc {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.5;
    }

    .card-actions-box {
      width: 100%;
      max-width: 420px;
      margin-top: 10px;
      background: var(--card-sub-bg);
      border-radius: 18px;
      padding: 8px 20px;
    }

    /* ===================================================
       5. PROFILE PAGE DESIGN
       =================================================== */
    .profile-card-group {
      background: var(--card-sub-bg);
      border-radius: 18px;
      padding: 6px 20px;
      margin-bottom: 20px;
    }

    .profile-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      border-bottom: 1px solid var(--border-color);
      cursor: pointer;
    }

    .profile-item:last-child {
      border-bottom: none;
    }

    .profile-item-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .profile-item-icon {
      font-size: 18px;
      color: var(--text-main);
      width: 22px;
      text-align: center;
    }

    .profile-item-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
    }

    .profile-item-desc {
      font-size: 12px;
      color: var(--text-sub);
      margin-top: 3px;
    }

    .logout-btn {
      width: 100%;
      background: var(--card-sub-bg);
      border: none;
      padding: 18px;
      border-radius: 16px;
      color: #e74c3c;
      font-weight: 700;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .app-version {
      text-align: center;
      font-size: 13px;
      color: var(--text-sub);
      margin-top: 10px;
      font-weight: 500;
    }

    .switch {
      position: relative;
      display: inline-block;
      width: 44px;
      height: 24px;
    }

    .switch input { opacity: 0; width: 0; height: 0; }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: #cbd5e1;
      transition: .3s;
      border-radius: 24px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      transition: .3s;
      border-radius: 50%;
    }

    input:checked + .slider { background-color: #2563eb; }
    input:checked + .slider:before { transform: translateX(20px); }

    /* ===================================================
       6. PERSONAL DETAILS PAGE DESIGN
       =================================================== */
    .personal-details-wrapper {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 25px 20px;
      color: var(--text-main);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
      border: 1px solid var(--border-color);
      transition: background-color 0.3s, color 0.3s;
    }

    .pd-content {
      position: relative;
      z-index: 2;
    }

    .pd-header {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin-bottom: 25px;
    }

    .pd-header .back-btn {
      color: var(--text-main);
      left: 0;
    }

    .pd-header-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--primary-accent);
    }

    .pd-main-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .pd-subtitle {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.5;
      margin-bottom: 30px;
    }

    .pd-section-label {
      font-size: 12px;
      font-weight: 800;
      color: var(--text-sub);
      letter-spacing: 1.2px;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .pd-group {
      margin-bottom: 30px;
      background: var(--card-sub-bg);
      border-radius: 16px;
      padding: 5px 18px;
    }

    .pd-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .pd-item:last-child {
      border-bottom: none;
    }

    .pd-label {
      font-size: 14px;
      color: var(--text-sub);
      font-weight: 500;
    }

    .pd-value {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      text-align: right;
    }

    /* ===================================================
       7. TRANSACTION HISTORY PAGE
       =================================================== */
    .history-group-title {
      font-size: 14px;
      font-weight: 800;
      color: var(--text-main);
      margin: 20px 0 10px 0;
    }

    .history-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      cursor: pointer;
    }

    .history-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .tx-icon-sm { font-size: 14px; }

    /* ===================================================
       8. TRANSACTION RECEIPT PAGE
       =================================================== */
    .receipt-container {
      max-width: 500px;
      margin: 0 auto;
    }

    .receipt-header-card {
      background: var(--card-bg);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.02);
      border: 1px solid var(--border-color);
    }

    .receipt-type-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .receipt-type-row i {
      font-size: 18px;
      color: var(--text-main);
    }

    .receipt-amount-main {
      font-size: 28px;
      font-weight: 800;
      color: var(--danger-color);
      margin-bottom: 5px;
    }

    .receipt-account-sub {
      font-size: 13px;
      color: var(--text-sub);
    }

    .receipt-details-card {
      background: var(--card-bg);
      border-radius: 16px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.02);
      border: 1px solid var(--border-color);
    }

    .receipt-field label {
      display: block;
      font-size: 12px;
      color: var(--text-sub);
      margin-bottom: 4px;
    }

    .receipt-field p {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.3px;
    }

    .receipt-actions-row {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 10px;
    }

    .action-btn-circle {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .circle-icon {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: transform 0.2s;
    }

    .circle-icon:active { transform: scale(0.92); }

    .circle-icon.blue {
      background-color: var(--card-sub-bg);
      color: #2563eb;
    }

    .circle-icon.green {
      background-color: var(--card-sub-bg);
      color: var(--success-color);
    }

    .action-circle-label {
      font-size: 12px;
      color: var(--text-sub);
      font-weight: 600;
    }

    /* ===================================================
       9. FIXED BOTTOM NAVBAR
       =================================================== */
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 75px;
      background-color: var(--nav-bg);
      display: flex;
      justify-content: space-around;
      align-items: center;
      border-top: 1px solid var(--border-color);
      z-index: 9900;
    }

    .nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      color: var(--nav-item-inactive);
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
      width: 25%;
    }

    .nav-item i { font-size: 20px; }
    .nav-item.active { color: var(--nav-item-active); }

    /* ===================================================
       10. NOTIFICATION MODAL
       =================================================== */
    .notification-overlay {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.4);
      z-index: 10000;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      backdrop-filter: blur(3px);
    }

    .notification-overlay.show {
      opacity: 1;
      visibility: visible;
    }

    .notification-panel {
      background: var(--card-bg);
      width: 100%;
      max-width: 600px;
      border-radius: 24px 24px 0 0;
      padding: 25px;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
      max-height: 80vh;
      overflow-y: auto;
    }

    .notification-overlay.show .notification-panel {
      transform: translateY(0);
    }

    .notif-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
    }

    .notif-header h3 {
      font-size: 18px;
      color: var(--text-main);
      font-weight: 700;
    }

    .notif-close {
      font-size: 22px;
      color: var(--text-sub);
      cursor: pointer;
      background: var(--card-sub-bg);
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .notif-close:hover {
      background: var(--border-color);
      color: var(--text-main);
    }

    .notif-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .notif-item {
      display: flex;
      gap: 15px;
      padding: 16px;
      border-radius: 16px;
      background: var(--card-sub-bg);
      align-items: flex-start;
      transition: transform 0.2s;
    }

    .notif-item:active { transform: scale(0.98); }

    .notif-item.unread {
      border-left: 4px solid var(--primary-accent);
      background: var(--primary-light);
    }

    [data-theme="dark"] .notif-item.unread {
      background: rgba(245, 166, 35, 0.1);
    }

    .notif-icon-box {
      background: var(--card-bg);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-accent);
      font-size: 18px;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .notif-content h4 {
      font-size: 15px;
      color: var(--text-main);
      margin-bottom: 6px;
      font-weight: 700;
    }

    .notif-content p {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.5;
      margin-bottom: 8px;
    }

    .notif-time {
      font-size: 11px;
      color: var(--nav-item-inactive);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    @media (min-width: 900px) {
      .desktop-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
      }
      .notification-overlay { align-items: center; }
      .notification-panel { border-radius: 24px; }
    }
/* Tusaale ahaan sida CSS-ka loo habeeyo */
body.dark-mode {
  background-color: #121212;
  color: #ffffff;
}

body.dark-mode .profile-card-group,
body.dark-mode .app-container {
  background-color: #1e1e1e;
  color: #ffffff;
}

body.dark-mode .profile-item-title,
body.dark-mode .page-header-title {
  color: #ffffff;
}