/* saas_7_chat_header.css */

/* CSS Variables for easy theming */
:root {
    --primary-color: #4285F4;
    --primary-hover: #357ae8;
    --text-color: #374151;
    --bg-light: #E5E7EB;
    --bg-light-hover: #d1d5db;
  }
  
  /* Global Styles */
  body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header styles */
  header {
    background-color: #fff;
    /* A subtle shadow adds a modern depth */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Navbar Container */
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Logo styles */
  .logo img {
    height: 40px; /* Adjust as needed */
  }
  
  .header-logo img {
    height: 100px; /* Adjust as needed */
  }
  
  /* Navigation menu styles */
  .nav-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    text-decoration: none;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--primary-color);
  }
  
  /* Actions section styles */
  .actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .search-icon {
    font-size: 18px;
    padding: 8px;
    background-color: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .search-icon:hover {
    background-color: var(--bg-light-hover);
  }
  
  .language-dropdown {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .dropdown-icon {
    margin-left: 5px;
    font-size: 12px;
  }
  
  .login {
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .login:hover {
    color: var(--primary-color);
  }
  
  /* CTA Button styles */
  .cta-button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .nav-links ul {
      flex-direction: column;
      align-items: center;
      display: none; /* This will be toggled via a hamburger menu on mobile */
    }
  
    .actions {
      gap: 10px;
    }
  
    .navbar-container {
      flex-direction: column;
      gap: 10px;
    }
  }
  