<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Language Switcher Button */
.language-switcher {
    position: absolute;
    top: 5px;
    right: 80px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    transition: border 0.2s ease;
  }
  
  .language-switcher:hover {
    border-color: #999;
  }
  
  /* Dropdown Menu */
  .language-dropdown {
    display: none;
    position: absolute;
    top: 34px;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    min-width: 100px;
    z-index: 1000;
    padding: 4px 0;
  }
  
  /* Each Language Option in the Dropdown */
  .lang-option {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 13px;
    line-height: 1.3;
  }
  
  /* Flag Image Styling */
  .flag {
    font-size: 22px;  /* Adjust font size for emoji flags */
    margin-right: 10px; /* Space between flag and text */
  }
  
  /* Text Layout for Native and English Labels */
  .lang-text {
    display: flex;
    flex-direction: column; /* Stack the text vertically */
  }
  
  /* Native Language Name (Bold and Normal Size) */
  .lang-native {
    font-weight: 500;
    margin-bottom: 0px; /* Space between native language and English language */
  }
  
  /* English Language Name (Smaller Text) */
  .lang-english {
    font-size: 11px; /* Smaller font size */
    color: #888;
  }
  
  /* Hover Effect: Change Text Color */
  .lang-option:hover .lang-native {
    color: #0056b3; /* Text color on hover */
  }
  
  /* Show Dropdown */
  .language-dropdown.show {
    display: block;
  }
  </pre></body></html>