/* style.css — Ochiq mijoz bron sayti uchun qo'shimcha uslublar */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

input[type="date"] {
  color-scheme: light;
}
html.dark input[type="date"] {
  color-scheme: dark;
}

.slot-card {
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  border: 1px solid transparent;
}
.slot-card:hover {
  transform: translateY(-2px);
}

.slot-free {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  color: #059669;
}
html.dark .slot-free {
  color: #34d399;
}

.slot-booked {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
  color: #dc2626;
  cursor: not-allowed;
}
html.dark .slot-booked {
  color: #f87171;
}

.stadium-card {
  transition: transform 0.12s ease;
}
.stadium-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-image: linear-gradient(to right, #2563eb, #9333ea);
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.92;
}
.btn-primary:active {
  transform: scale(0.98);
}
