/* Base styles */
body {
    margin: 0;
    font-family: sans-serif;
  }
  
  .navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    margin-left: auto;
  }
  
  .navbar .container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    height: 32px;
    flex-shrink: 0;
  }

  .navbar-brand h2 {
    color: var(--primary-color);
    font-weight: 800;
    transition: all 0.3s ease;
    margin: 0;
    font-size: 1.25rem;
    white-space: nowrap;
    line-height: 32px;
  }
  
  .navbar-brand img.app-icon {
    height: 32px;
    width: 32px;
    margin-right: 8px;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    margin-left: auto;

  }
  
  .nav-links li a {
    text-decoration: none;
    padding: 8px;
  }
  
  .nav-link {
    color: var(--text-color) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.9;
    padding: 0 !important;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 32px;
  }

  .nav-link:hover {
    color: var(--primary-color) !important;
    opacity: 1;
  }

  .nav-item {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
  }
    
  .hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    
    cursor: pointer;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: var(--primary-color);
      position: absolute;
      top: 60px;
      left: 0;
    }
    
    .nav-link {
      color: white !important;
    }

    .nav-link:hover {
      color: var(--secondary-color) !important;
      opacity: 1;
    }

    .nav-links.open {
      display: flex;
    }
  
    .nav-links li {
      text-align: center;
      padding: 10px 0;
    }
  }
  