a:hover{
    text-decoration: underline;
  }
  .nav-link{
    font-size: 1.1em;
  }

  .fontSixteen{
    font-size: 16px !important;
  }

  /* New header layout inspired by React example */
  .app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1050;
    padding: 0;
  }
  .app-header-gradient {
    height: 4px;
    background-image: linear-gradient(to right, #3b82f6, #8b5cf6, #ec4899, #f97316, #facc15);
  }
  .app-header-inner {
    height: 60px;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    align-items: center;
  }

  .app-nav-left a,
  .app-nav-right a {
    font-size: 0.875rem;
    color: #4b5563;
    transition: color 0.15s ease;
  }
  .app-nav-left a:hover,
  .app-nav-right a:hover {
    color: #111827;
    text-decoration: none;
  }

  .app-brand-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    gap: 0.5rem;
  }
  @media (min-width: 1200px) {
    .app-brand-center {
      display: flex;
    }
  }
  .app-brand-center .logo-symbol {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
  }
  .app-brand-center .logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
  }

  .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #22c55e;
  }
  .status-label {
    font-size: 0.875rem;
    color: #4b5563;
  }

  .account-button {
    padding: 0.35rem 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    font-size: 0.875rem;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
  .account-button:hover {
    background-color: #f9fafb;
    text-decoration: none;
  }

.account-menu-icon {
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9ca3af;
}

  body {
    padding-top: 72px;
  }
@media (max-width: 1199.98px) {
    .app-header {
      position: static;
      height: auto;
    }
    .app-header-inner {
      padding-left: 1rem;
      padding-right: 1rem;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      height: auto;
    }
    body {
      padding-top: 0;
    }
  }