/* Dating Filter Components Styles */
/* Extracted from inline <style> blocks to prevent template recursion */

/* Filter Select Component */
.filter-select-wrapper {
  margin-bottom: 20px;
}

.filter-select-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.required-indicator {
  color: #ff6b6b;
  margin-left: 3px;
}

.filter-select-container {
  position: relative;
}

.filter-select-input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.2s;
}

.filter-select-input:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.filter-select-input:focus {
  outline: none;
  border-color: #ff9100;
  box-shadow: 0 0 0 3px rgba(255, 145, 0, 0.2);
}

.filter-select-input option {
  background: #1a1a1a;
  color: #fff;
  padding: 10px;
}

.filter-select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
  transition: transform 0.2s;
}

.filter-select-input:focus ~ .filter-select-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: #ff9100;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .filter-select-input {
    padding: 14px 40px 14px 15px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
}
