/* FDB Standard Dropdown Styling - Use across entire dashboard */
.fdb-select, select.fdb-select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  color: #1a1a2e;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.fdb-select:focus, select.fdb-select:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}

.fdb-select:hover, select.fdb-select:hover {
  border-color: #bbb;
}

/* Small variant for compact spaces */
.fdb-select-sm {
  padding: 8px 10px;
  font-size: 14px;
  background-position: right 10px center;
}

/* For hours selects in DAR */
.fdb-hours-select {
  width: 60px;
  padding: 8px 6px;
  font-size: 14px;
  font-weight: 700;
  background-position: right 4px center;
  background-size: 10px 6px;
}