/* Admin helpers — plain CSS (Tailwind CDN does not process @apply in linked files) */

.panel {
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, 0.6);
  background: #111827;
  padding: 1.25rem;
}

.section-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 0.875rem;
  color: #94a3b8;
}

.label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.input {
  width: 100%;
  border-radius: 0.5rem;
  background: #1f2937;
  border: 1px solid #475569;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #f1f5f9;
}

.input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #0d9488;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: #0d9488;
  transition: background 0.15s;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  border: 0;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0f766e;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid #475569;
  transition: background 0.15s;
  padding: 0.375rem 0.75rem;
  color: #e2e8f0;
  background: transparent;
  cursor: pointer;
}

.btn-ghost:hover {
  background: #1f2937;
}

.btn-danger {
  color: #f87171;
  font-size: 0.875rem;
  background: none;
  border: 0;
  cursor: pointer;
}

.btn-danger:hover {
  color: #fca5a5;
}

.day-chip {
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  border: 1px solid #475569;
  color: #cbd5e1;
  cursor: pointer;
  user-select: none;
  background: transparent;
}

.day-chip.active {
  background: rgba(13, 148, 136, 0.2);
  border-color: #0d9488;
  color: #ccfbf1;
}

.type-pill {
  display: inline-flex;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: #1f2937;
  color: #cbd5e1;
}

.online-dot {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: #34d399;
}

.offline-dot {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: #64748b;
}
