
/* Header z-index fix */
header {
    position: relative;
    z-index: 9999 !important;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 10000;
  }
  
  .dropdown > button {
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none !important;
    position: fixed;
    background-color: var(--card);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 99999 !important;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    margin-top: 0.25rem;
  }
  
  .dropdown-content.show {
    display: block !important;
  }
  
  .dropdown-item {
    color: var(--card-foreground);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 0.875rem;
  }
  
  .dropdown-item:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
  }
  
  .dropdown-item:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
  }
  
  .dropdown-item:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
  }
  
  /* Dark theme specific adjustments */
  .dark .dropdown-content {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
  }
