/* --- extracted style block 1 from notifications.php --- */
    /* CSS from original file (unchanged) */
    :root {
      --primary: #c62828;
      --primary-dark: #8e0000;
      --primary-light: #ff5f52;
      --secondary: #1565c0;
      --muted: #f1f4f6;
      --card-bg: #eef0f3;
      --dark-text: #333;
      --light-text: #666;
      --white: #fff;
      --shadow: 0 4px 12px rgba(0,0,0,0.08);
      --transition: all 0.3s ease;
    }
    
    ::-webkit-scrollbar { display: none; }
    * { scrollbar-width: none; }
    html, body { -ms-overflow-style: none; }
    
    body {
      font-family: 'Nunito', system-ui;
      background:#fff;
      color: var(--dark-text);
      padding-bottom: 70px;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }
    
    a{ all: unset; }
    
    .site-header {
      background: var(--white);
      border-bottom: 1px solid #eee;
      padding: 12px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .brand {
      font-family: 'Montserrat';
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 2px;
      font-size: 1.4rem;
    }
    
    .nav-icon {
      font-size: 1.2rem;
      color: #444;
      position: relative;
    }
    
    .nav-badge {
      position: absolute;
      top: 0px;
      right: 1px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      font-size: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .btn-post-property {
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 30px;
      padding: 8px 16px;
      font-weight: 700;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(198, 40, 40, 0.3);
    }
    
    .btn-post-property:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(198, 40, 40, 0.3);
    }
    
    .nav-icon:hover { border: none; }
    
    /* Notification Styles */
    .notification-header {
      padding: 15px 20px;
      border-bottom: 1px solid #eee;
      background: var(--muted);
    }
    
    .notification-tabs {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 5px;
    }
    
    .notification-tab {
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      background: white;
      color: var(--light-text);
      border: 1px solid #e0e0e0;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }
    
    .notification-tab.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }
    
    .notification-container {
      padding: 15px;
    }
    
    .notification-item {
      display: flex;
      align-items: flex-start;
      padding: 15px;
      border-radius: 12px;
      margin-bottom: 15px;
      background: white;
      box-shadow: var(--shadow);
      transition: var(--transition);
      cursor: pointer;
    }
    
    .notification-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }
    
    .notification-item.unread {
      background: #fff8f8;
      border-left: 4px solid var(--primary);
    }
    
    .notification-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .notification-icon.property { background: #e3f2fd; color: var(--secondary); }
    .notification-icon.message { background: #e8f5e9; color: #388e3c; }
    .notification-icon.system { background: #fff3e0; color: #f57c00; }
    .notification-icon.promotion { background: #fce4ec; color: #c2185b; }
    
    .notification-content { flex: 1; }
    
    .notification-title {
      font-weight: 700;
      margin-bottom: 5px;
      font-size: 1rem;
    }
    
    .notification-message {
      color: var(--light-text);
      font-size: 0.9rem;
      margin-bottom: 8px;
    }
    
    .notification-time {
      font-size: 0.8rem;
      color: #999;
    }
    
    .notification-actions {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }
    
    .notification-action {
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .notification-action.view {
      background: var(--primary);
      color: white;
    }
    
    .notification-action.dismiss {
      background: #f5f5f5;
      color: var(--light-text);
    }
    
    .notification-action:hover {
      transform: scale(1.05);
    }
    
    .notification-empty {
      text-align: center;
      padding: 40px 20px;
      color: var(--light-text);
    }
    
    .notification-empty i {
      font-size: 3rem;
      margin-bottom: 15px;
      color: #ddd;
    }
    
    .notification-section {
      margin-bottom: 25px;
    }
    
    .notification-section-title {
      font-weight: 700;
      margin-bottom: 15px;
      padding-left: 10px;
      border-left: 4px solid var(--primary);
    }
    
    @media (max-width: 576px) {
      body { box-shadow: none; }
      .brand { font-size: 1.4rem; }
      .btn-post-property { padding: 8px 15px; font-size: 0.8rem; }
      .notification-tab { padding: 6px 12px; font-size: 0.8rem; }
      .notification-item { padding: 12px; }
      .notification-icon { width: 40px; height: 40px; margin-right: 12px; }
    }
  
