/* Navigation Styles */
nav {
    background-color: #f7fbff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 20px;
  }
  
  .logo-section {
    display: flex;
  }
  
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
    position: relative;
  }
  
  .logo:hover {
    opacity: 0.9;
  }
  
  .ext-logo-small {
    width: 40px;
    height: 40px;
  }
  
  .web-name {
    margin-left: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #32325d;
  }
  
  .chrome-featured-badge {
    margin-left: 12px;
    background-color: #0f9d58; /* Chrome's green color */
    border-radius: 2px;
    padding: 2px 6px;
    display: inline-flex;
    align-items: center;
    height: 18px;
    position: relative;
  }
  
  .chrome-featured-badge::before {
    content: '';
    position: absolute;
    left: -6px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-right: 6px solid #0f9d58;
    border-bottom: 9px solid transparent;
  }
  
  .ribbon-icon {
    font-size: 9px;
    color: white;
    margin-right: 4px;
  }
  
  .chrome-featured-badge span {
    color: white;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }
  
  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    color: #32325d;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
  }
  
  .nav-links a:hover {
    color: #3ecf8e;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3ecf8e;
    transform: scaleX(0);
    transition: transform 0.2s;
  }
  
  .nav-links a:hover::after {
    transform: scaleX(1);
  }
  
  /* Mobile responsive styles */
  @media only screen and (max-width: 768px) {
    .main-nav {
      padding: 0 16px;
    }
    
    .web-name {
      font-size: 16px;
    }
    
    .chrome-featured-badge {
      margin-left: 8px;
      padding: 1px 4px;
      height: 14px;
    }
    
    .chrome-featured-badge::before {
      border-top: 7px solid transparent;
      border-right: 4px solid #0f9d58;
      border-bottom: 7px solid transparent;
      left: -4px;
    }
    
    .ribbon-icon {
      font-size: 7px;
      margin-right: 3px;
    }
    
    .chrome-featured-badge span {
      font-size: 8px;
    }
    
    .nav-links {
      gap: 20px;
    }
    
    .nav-links a {
      font-size: 14px;
    }
  }

  @media only screen and (max-width: 600px) {
    .browser-buttons {
      display: none;
    }
    
    /* Mobile menu improvements */
    .main-nav {
      height: 56px;
      padding: 0 12px;
    }
    
    .logo-section {
      flex: 1;
    }
    
    .ext-logo-small {
      width: 32px;
      height: 32px;
    }
    
    .web-name {
      font-size: 14px;
      margin-left: 8px;
    }
    
    .chrome-featured-badge {
      display: none;
    }
    
    /* Mobile menu button styling */
    .nav-buttons {
      display: flex;
      gap: 8px;
    }
    
    .nav-buttons a {
      font-size: 14px;
      padding: 8px 12px;
    }
  }