/* Gymkee Admin - shared styles */
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: #f5f4f0;
  color: #0d0d0d;
}
.heading-display {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.heading-serif {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b6b6b;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.15s ease;
}
.btn-primary {
  background: #0d0d0d;
  color: #fff;
}
.btn-primary:hover { background: #2b2b29; }
.btn-accent {
  background: #b8f55a;
  color: #0d0d0d;
  box-shadow: 0 8px 20px -10px rgba(184, 245, 90, 0.6);
}
.btn-accent:hover { background: #c4f66e; }
.btn-ghost {
  background: #fff;
  color: #2b2b29;
  border: 1px solid #e4e4df;
}
.btn-ghost:hover { background: #fafaf7; }
.btn-danger { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.btn-danger:hover { background: #fee2e2; }

.card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e4e4df;
  box-shadow: 0 1px 0 rgba(13, 13, 13, 0.03), 0 4px 12px -8px rgba(13, 13, 13, 0.06);
}

.input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e4e4df;
  background: #fff;
  padding: 0.625rem 0.875rem;
  font-size: 14px;
  outline: none;
  transition: border 0.15s, box-shadow 0.15s;
}
.input:focus {
  border-color: #b8f55a;
  box-shadow: 0 0 0 3px rgba(184, 245, 90, 0.25);
}

.tab-btn { transition: background 0.15s, color 0.15s, border-color 0.15s; }
.tab-btn.active {
  background: #0d0d0d;
  color: #b8f55a;
  border-color: #0d0d0d;
}

.row-hover:hover { background: #fafaf7; }

.spinner {
  border: 3px solid #e4e4df;
  border-top: 3px solid #0d0d0d;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}
.modal-card {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
}
