/* Filters page — Tailwind handles layout; these mirror dashboard/register tokens */
body {
  background: linear-gradient(180deg, #041630 0%, #0a2342 50%, #000000 100%);
  min-height: 100vh;
  color: #fff;
  background-attachment: fixed;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 218, 185, 0.1);
}

.input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 218, 185, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}

.select-like {
  cursor: pointer;
  text-align: left;
}

.stepper-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 218, 185, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #ffdab9;
  font-weight: 800;
  cursor: pointer;
}

.value-pill {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 218, 185, 0.15);
  font-weight: 700;
}

.toast-f {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1200;
  max-width: min(520px, calc(100vw - 32px));
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(4, 22, 48, 0.95);
  border: 1px solid rgba(255, 218, 185, 0.25);
  color: #fff;
  font-size: 14px;
  display: none;
}

.toast-f.show {
  display: block;
}

.picker-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.picker-backdrop.open {
  display: flex;
}

.picker-sheet {
  width: 100%;
  max-width: 520px;
  max-height: 70vh;
  background: #0a2342;
  border: 1px solid rgba(255, 218, 185, 0.25);
  border-radius: 16px 16px 12px 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.picker-search {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.picker-list {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.picker-item {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  color: #fff;
}

.picker-item:hover {
  background: rgba(255, 218, 185, 0.12);
}

.role-chip {
  border: 1px solid rgba(255, 218, 185, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.role-chip:hover {
  background: rgba(255, 218, 185, 0.12);
}

.role-chip.active {
  background: linear-gradient(135deg, #fff5ee, #ffdab9, #ffccb6);
  color: #041630;
  border-color: transparent;
}
