/* CallLight Shared Styles — matches landing page design */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mint: #00E5A0;
  --mint-dim: #00C88A;
  --mint-glow: rgba(0, 229, 160, 0.15);
  --dark: #0A0F1C;
  --dark-card: #111827;
  --dark-card-hover: #1a2332;
  --dark-border: #1E293B;
  --dark-input: #0F172A;
  --text: #F1F5F9;
  --text-dim: #94A3B8;
  --text-muted: #64748B;
  --pulse-red: #FF3D5A;
  --warning: #F59E0B;
  --danger: #EF4444;
  --success: #10B981;
  --info: #3B82F6;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a { color: var(--mint); text-decoration: none; }
a:hover { color: var(--mint-dim); }

/* Background grid (same as landing) */
.bg-grid {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,229,160,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,160,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* ========== NAV ========== */
.app-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--mint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-logo .logo-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--dark);
  border-radius: 50%;
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-link.active {
  color: var(--mint);
  background: var(--mint-glow);
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-user-name {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.nav-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn-primary {
  background: var(--mint);
  color: var(--dark);
}

.nav-btn-primary:hover {
  background: var(--mint-dim);
  transform: translateY(-1px);
}

.nav-btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--dark-border);
}

.nav-btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-dim);
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ========== CARDS ========== */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.2s;
}

.card:hover {
  border-color: rgba(0, 229, 160, 0.2);
  background: var(--dark-card-hover);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* ========== SHIFT CARDS ========== */
.shift-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.shift-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 229, 160, 0.08);
}

.shift-card.urgent {
  border-color: rgba(255, 61, 90, 0.3);
}

.shift-card.urgent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pulse-red), transparent);
}

.shift-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.shift-unit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--mint-glow);
  color: var(--mint);
}

.urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 61, 90, 0.15);
  color: var(--pulse-red);
  animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.shift-facility {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.shift-location {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.shift-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.shift-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shift-detail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.shift-detail-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.shift-rate {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mint);
  font-family: 'Space Grotesk', sans-serif;
}

.shift-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.cert-tag {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(59, 130, 246, 0.12);
  color: var(--info);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.cert-tag.license {
  background: rgba(0, 229, 160, 0.1);
  color: var(--mint);
  border-color: rgba(0, 229, 160, 0.2);
}

.shift-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Match score badges */
.match-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.match-high {
  background: rgba(0, 229, 160, 0.15);
  color: var(--mint);
  border: 1px solid rgba(0, 229, 160, 0.3);
}

.match-medium {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.match-low {
  background: rgba(100, 116, 139, 0.15);
  color: var(--text-dim);
  border: 1px solid rgba(100, 116, 139, 0.3);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--mint);
  color: var(--dark);
}

.btn-primary:hover:not(:disabled) {
  background: var(--mint-dim);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 229, 160, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--dark-border);
}

.btn-secondary:hover:not(:disabled) {
  border-color: var(--text-dim);
  background: rgba(255,255,255,0.03);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-danger:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.25);
}

.btn-sm {
  padding: 6px 16px;
  font-size: 0.8rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--dark-border);
  background: var(--dark-input);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px var(--mint-glow);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 4px;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--dark-input);
  border: 1px solid var(--dark-border);
  color: var(--text-dim);
}

.checkbox-pill input {
  display: none;
}

.checkbox-pill.checked, .checkbox-pill:has(input:checked) {
  background: var(--mint-glow);
  border-color: var(--mint);
  color: var(--mint);
}

/* ========== FILTERS ========== */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-pill {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--text-dim);
}

.filter-pill:hover {
  border-color: var(--text-dim);
  color: var(--text);
}

.filter-pill.active {
  background: var(--mint-glow);
  border-color: var(--mint);
  color: var(--mint);
}

.filter-select {
  padding: 8px 36px 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  color: var(--text-dim);
  font-size: 0.85rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  outline: none;
}

.filter-select:focus {
  border-color: var(--mint);
}

/* ========== GRID ========== */
.shifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
  padding: 20px 0 40px;
}

/* ========== STATS ========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--mint);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.25s;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* ========== ALERTS ========== */
.alert {
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--danger);
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--info);
}

/* ========== AUTH PAGE ========== */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.auth-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
}

.auth-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.auth-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--dark-input);
  border-radius: 10px;
  padding: 4px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-dim);
  transition: all 0.2s;
  border: none;
  background: none;
}

.auth-tab.active {
  background: var(--mint);
  color: var(--dark);
}

/* Role selector */
.role-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.role-card {
  padding: 20px;
  border-radius: 12px;
  border: 2px solid var(--dark-border);
  background: var(--dark-input);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.role-card:hover {
  border-color: var(--text-dim);
}

.role-card.selected {
  border-color: var(--mint);
  background: var(--mint-glow);
}

.role-card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.role-card-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.role-card-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 32px 0 0;
}

.page-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.page-subtitle {
  color: var(--text-dim);
  font-size: 1rem;
}

/* ========== PROFILE SETUP BANNER ========== */
.setup-banner {
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.setup-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.setup-banner-text h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.setup-banner-text p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ========== EMPTY STATE ========== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-state-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.empty-state-text {
  color: var(--text-dim);
  max-width: 400px;
  margin: 0 auto 20px;
}

/* ========== FACILITY DASHBOARD ========== */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.dash-section {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 24px;
}

.dash-section-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Shift list item */
.shift-list-item {
  padding: 16px;
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.shift-list-item:hover {
  border-color: rgba(0, 229, 160, 0.2);
}

.shift-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.shift-list-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.shift-list-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.status-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-open {
  background: rgba(0, 229, 160, 0.15);
  color: var(--mint);
}

.status-filled {
  background: rgba(59, 130, 246, 0.15);
  color: var(--info);
}

.status-cancelled {
  background: rgba(100, 116, 139, 0.15);
  color: var(--text-dim);
}

.status-pending {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.status-accepted {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.status-rejected {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

/* Application list */
.app-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  margin-bottom: 8px;
}

.app-nurse-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-nurse-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.app-nurse-detail {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.app-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ========== LOADING ========== */
.loading-spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid var(--dark-border);
  border-top-color: var(--mint);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  gap: 12px;
  color: var(--text-dim);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .shifts-grid {
    grid-template-columns: 1fr;
  }
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .role-selector {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .page-title {
    font-size: 1.4rem;
  }
  .filters-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
  }
  .auth-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .shift-details {
    gap: 12px;
  }
  .shift-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* ========== TOAST ========== */
.toast-container {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideIn 0.3s ease-out;
  max-width: 400px;
}

.toast-success {
  background: rgba(16, 185, 129, 0.95);
  color: white;
}

.toast-error {
  background: rgba(239, 68, 68, 0.95);
  color: white;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ========== MISC ========== */
.divider {
  height: 1px;
  background: var(--dark-border);
  margin: 24px 0;
}

.text-mint { color: var(--mint); }
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }
