/* ═══════════════════════════════════════════════════════════════════════════
   Metro Dropdown Styles (Patch 1.4)
   Matches .metric-dropdown from demographics.css
   ═══════════════════════════════════════════════════════════════════════════ */

.metro-select-wrapper {
  display: flex;
  flex-direction: column;
}

.metro-dropdown {
  width: 100%;
  background: rgba(15, 17, 23, 0.9);
  border: 1px solid rgba(42, 46, 58, 0.8);
  border-radius: 8px;
  padding: 6px 10px;
  color: #e8eaf0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  cursor: pointer;
  min-width: 140px;
  transition: all 0.2s;

  /* Force dark appearance across browsers */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color-scheme: dark;

  /* Custom chevron matching accent color */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%238b90a0' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.metro-dropdown:hover {
  border-color: rgba(167, 139, 250, 0.5);
}

.metro-dropdown:focus {
  outline: none;
  border-color: #a78bfa;
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.2);
}

.metro-dropdown option {
  background: #181b24;
  color: #e8eaf0;
  padding: 8px;
}

/* Mobile - larger touch targets */
@media (max-width: 768px) {
  .mobile-location-bar .metro-dropdown {
    padding: 10px 12px;
    font-size: 14px;
    padding-right: 30px;
  }
}
