
  /* Navbar Styles */
  :root {
    --navbar-height: 64px;
    --navbar-bg: #1A1A1A;
    --navbar-border: rgba(255, 255, 255, 0.06);
    --amber: #F97316;
    --amber-pale: rgba(249, 115, 22, 0.1);
    --charcoal: #2D2D2D;
    --white: #FFFFFF;
    --muted: rgba(255, 255, 255, 0.4);
    --dim: rgba(255, 255, 255, 0.22);
  }

  .tillova-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--navbar-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: 'DM Sans', sans-serif;
  }

  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
    padding: 32px 0px 8px 1px;
    margin-bottom: 3px;
    max-width: 100%;
    gap: 20px;
  }

  /* Left section: Branding + Status */
  .navbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
  }

  
  .navbar-status {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .status-greeting h2 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
  }

  .status-greeting .user-name {
    color: var(--amber);
    font-size: 20px;

  }

  .status-business {
    font-size: 12px;
    color: var(--muted);
    margin: 2px 0 0;
  }

  /* Right section: Controls */
  .navbar-right {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
  }

  /* Badge */
  .navbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .navbar-badge.trial-badge {
    background: var(--amber-pale);
    color: var(--amber);
  }

  .navbar-badge.trial-badge:hover {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
  }

  .navbar-badge.active-badge {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
  }

  .badge-icon {
    font-size: 13px;
  }

  /* Icon buttons */
  .navbar-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
  }

  .navbar-icon-btn:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .navbar-icon-btn.show {
    background: rgba(249, 115, 22, 0.1);
  }

  .navbar-icon-btn .icon {
    display: block;
  }

  .navbar-icon-btn .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #f87171;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
  }

  /* Dropdown menus */
  .dropdown-wrapper {
    position: relative;
  }

  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--charcoal);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    min-width: 380px;
    max-width: 420px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1001;
    pointer-events: none;
  }
  .dropdown-menu-biz {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--charcoal);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    min-width: 80px;
    max-width: 120px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1001;
    pointer-events: none;
  }

  .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .dropdown-header {
    padding: 16px;
    border-bottom: 1px solid var(--navbar-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--white);
    margin: 0;
  }

  .btn-mark-all {
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
  }

  .btn-mark-all:hover {
    color: var(--white);
  }

  .btn-mark-all svg {
    display: block;
  }

  .dropdown-section-label {
    padding: 12px 16px 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dim);
  }

  .dropdown-divider {
    height: 1px;
    background: var(--navbar-border);
    margin: 0;
  }

  .dropdown-content {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  }

  .dropdown-content::-webkit-scrollbar {
    width: 6px;
  }

  .dropdown-content::-webkit-scrollbar-track {
    background: transparent;
  }

  .dropdown-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
  }

  .dropdown-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .dropdown-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--muted);
  }

  .empty-icon {
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.5;
  }

  .empty-text {
    font-size: 13px;
  }

  .dropdown-footer {
    padding: 12px;
    border-top: 1px solid var(--navbar-border);
  }

  .btn-view-all {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--amber);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .btn-view-all:hover {
    background: var(--amber-pale);
  }

  /* Notification items */
  .notification-item {
    display: block;
    padding: 12px 16px;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.15s;
    position: relative;
  }

  .notification-item:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .notification-item.unread {
    background: rgba(249, 115, 22, 0.05);
    border-left: 3px solid var(--amber);
    padding-left: 13px;
  }

  .notification-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .notification-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
  }

  .notification-message {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
  }

  .notification-time {
    font-size: 11px;
    color: var(--dim);
    margin-top: 2px;
  }

  .notification-count {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: var(--amber);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
  }

  /* Message items */
  .message-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.15s;
  }

  .message-item:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .message-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--amber-pale);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .avatar-placeholder {
    font-size: 12px;
    font-weight: 700;
    color: var(--amber);
  }

  .message-body {
    flex: 1;
    min-width: 0;
  }

  .message-sender {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
  }

  .message-preview {
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .message-meta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .message-time {
    font-size: 11px;
    color: var(--dim);
    white-space: nowrap;
  }

  /* Profile menu */
  .profile-menu {
    min-width: 240px;
  }

  .profile-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .profile-info {
    flex: 1;
  }

  .profile-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
  }

  .profile-role {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
    text-transform: capitalize;
  }

  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    color: var(--white);
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    transition: background 0.15s;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .dropdown-item .item-icon {
    font-size: 15px;
    display: block;
  }

  .dropdown-item .item-label {
    flex: 1;
  }

  .dropdown-item.logout-item {
    color: #f87171;
  }

  .dropdown-item.logout-item:hover {
    background: rgba(248, 113, 113, 0.1);
  }

  .logout-form {
    width: 100%;
  }

  /* Profile avatar button */
  .profile-avatar,
  .profile-avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--amber-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--amber);
  }

  /* Responsive */
  @media (max-width: 960px) {
    .navbar-container {
      padding: 0 20px;
      gap: 12px;
    }

    .navbar-status {
      display: none;
    }

    .navbar-badge {
      display: none;
    }

    .dropdown-menu {
      min-width: 300px;
      max-width: 360px;
    }
  }

  @media (max-width: 576px) {
    .navbar-container {
      padding: 0 16px;
      height: 56px;
    }

    .navbar-logo {
      font-size: 18px;
    }

    .navbar-right {
      gap: 8px;
    }

    .navbar-icon-btn {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }

    .dropdown-menu {
      min-width: 280px;
      max-width: calc(100vw - 32px);
      right: -8px;
    }

    .dropdown-content {
      max-height: 350px;
    }
  }