/* ============================================
   ADMIN PANEL - SPECIFIC STYLES
   ============================================ */

:root {
  --primary: #FF6B35;
  --primary-dark: #E55A24;
  --secondary: #FFD23F;
  --accent: #7B2D8B;
  --dark: #0D1117;
  --dark-2: #161B22;
  --dark-3: #21262D;
  --light: #F9FAFB;
  --text: #E6EDF3;
  --text-muted: #8B949E;
  --border: rgba(255,255,255,0.08);
  --status-pending: #F59E0B;
  --status-confirmed: #22C55E;
  --status-cancelled: #EF4444;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --status-red: #EF4444;
  --status-amber: #F59E0B;
  --status-green: #22C55E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: 'Nunito', sans-serif; background: var(--dark); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === LOGIN SCREEN === */
#loginScreen {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.login-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(255,107,53,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(123,45,139,0.15) 0%, transparent 60%);
}

.login-box {
  position: relative;
  background: rgba(22, 27, 34, 0.9);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: var(--shadow), 0 0 60px rgba(255,107,53,0.1);
  animation: loginIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes loginIn {
  from { opacity: 0; transform: scale(0.8) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.login-logo {
  height: 80px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 12px rgba(255,107,53,0.4));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.login-box h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 8px;
}

.login-box p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.login-form { display: flex; flex-direction: column; gap: 16px; }

.login-input-group { position: relative; }

.login-input-group input {
  width: 100%;
  padding: 14px 18px 14px 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  transition: var(--transition);
  outline: none;
}

.login-input-group input:focus {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.login-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(255,107,53,0.4);
  cursor: pointer;
  border: none;
  margin-top: 8px;
}

.login-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255,107,53,0.6);
}

.login-error {
  color: #F87171;
  font-size: 0.85rem;
  font-weight: 700;
  display: none;
  padding: 10px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.login-error.show { display: block; animation: shake 0.4s ease; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

/* === ADMIN HEADER === */
.admin-header {
  background: rgba(22, 27, 34, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.admin-logo { height: 50px; filter: drop-shadow(0 0 6px rgba(255,107,53,0.3)); }

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-badge {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-logout {
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
}

/* === ADMIN LAYOUT === */
#adminPanel {
  display: none;
}

.admin-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 32px;
}

/* === SYSTEM CONTROLS === */
.system-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ctrl-btn {
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-bounce);
  border: 1px solid var(--border);
  color: white;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ctrl-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  border-color: var(--primary-light);
}

.ctrl-btn.refresh { border-color: rgba(14, 165, 233, 0.3); }
.ctrl-btn.refresh:hover { background: rgba(14, 165, 233, 0.1); }

.ctrl-btn.excel { border-color: rgba(34, 197, 94, 0.3); }
.ctrl-btn.excel:hover { background: rgba(34, 197, 94, 0.1); }

.ctrl-btn.backup { border-color: rgba(245, 158, 11, 0.3); }
.ctrl-btn.backup:hover { background: rgba(245, 158, 11, 0.1); }

/* === LEGEND === */
.admin-legend {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.03);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.status-red { background-color: var(--status-red); color: var(--status-red); }
.status-amber { background-color: var(--status-amber); color: var(--status-amber); }
.status-green { background-color: var(--status-green); color: var(--status-green); }

/* Overwrite calendar status dots to use specific colors */
.admin-cal-dot.red { background: var(--status-red); }
.admin-cal-dot.amber { background: var(--status-amber); }
.admin-cal-dot.green { background: var(--status-green); }

/* === STATS CARDS === */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.stat-card.total::before { background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.stat-card.pending::before { background: var(--status-pending); }
.stat-card.confirmed::before { background: var(--status-confirmed); }
.stat-card.cancelled::before { background: var(--status-cancelled); }

.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.stat-card-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.stat-card.total .stat-card-icon { background: rgba(255, 107, 53, 0.1); }
.stat-card.pending .stat-card-icon { background: rgba(245, 158, 11, 0.1); }
.stat-card.confirmed .stat-card-icon { background: rgba(34, 197, 94, 0.1); }
.stat-card.cancelled .stat-card-icon { background: rgba(239, 68, 68, 0.1); }

.stat-card-info {}
.stat-card-number {
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card-label { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }

/* === ADMIN TOOLBAR === */
.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.toolbar-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: white;
  flex: 1;
}

.toolbar-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}

.filter-btn:hover { border-color: rgba(255, 107, 53, 0.4); color: var(--primary-light); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

.toolbar-search {
  position: relative;
}

.toolbar-search input {
  padding: 10px 18px 10px 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: var(--transition);
  width: 240px;
}

.toolbar-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.toolbar-search input::placeholder { color: var(--text-muted); }

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}

/* === ADMIN CALENDAR VIEW === */
.admin-views {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* === MINI CALENDAR (Admin) === */
.admin-cal-wrapper {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.admin-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 107, 53, 0.06);
  border-bottom: 1px solid var(--border);
}

.admin-cal-month {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: white;
}

.admin-cal-grid {
  padding: 12px;
}

.admin-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.admin-cal-weekdays div {
  text-align: center;
  padding: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.admin-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.admin-cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 44px;
  background: var(--dark-3);
}

.admin-cal-day.empty { pointer-events: none; border-color: transparent; background: transparent; }
.admin-cal-day.today { border: 1.5px solid var(--secondary); }

.admin-cal-day-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.4);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.admin-cal-day.selected {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.admin-cal-day-slots {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.admin-cal-slot {
  flex: 1;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-cal-slot:last-child { border-bottom: none; }

.admin-cal-slot.available { background: #475569; } /* Gray for free */
.admin-cal-slot.pending   { background: var(--status-amber); }
.admin-cal-slot.confirmed { background: var(--status-green); }
.admin-cal-slot.cancelled { background: var(--status-red); }

/* Hide redundant elements */
.admin-cal-dots, .admin-cal-dot { display: none !important; }

/* === DAY DETAIL === */
.day-detail-panel {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow-y: auto;
  max-height: 400px;
}

.day-detail-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 20px;
}

/* === SLOT BLOCKS === */
.slot-block {
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid;
  transition: var(--transition);
}

.slot-block.available {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
}

.slot-block.pending {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
}

.slot-block.confirmed {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
}

.slot-block.cancelled {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
  opacity: 0.6;
}

.slot-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.slot-block-title {
  font-weight: 800;
  color: white;
  font-size: 1rem;
}

.status-pill {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-pill.pending { background: rgba(245,158,11,0.15); color: #FCD34D; }
.status-pill.confirmed { background: rgba(34,197,94,0.15); color: #4ADE80; }
.status-pill.cancelled { background: rgba(239,68,68,0.15); color: #F87171; }
.status-pill.available { background: rgba(34,197,94,0.1); color: #86EFAC; }

.slot-customer-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slot-customer-info span strong { color: rgba(255,255,255,0.7); }

.slot-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.action-btn {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition-bounce);
  cursor: pointer;
  border: 1px solid;
  font-family: 'Nunito', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

.action-btn:hover { transform: translateY(-2px); }

.action-btn.confirm {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #4ADE80;
}
.action-btn.confirm:hover { background: rgba(34, 197, 94, 0.2); }

.action-btn.cancel {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #F87171;
}

.action-btn.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}
.action-btn.whatsapp:hover { background: rgba(37, 211, 102, 0.2); }

.action-btn.move {
  background: rgba(123, 45, 139, 0.1);
  border-color: rgba(123, 45, 139, 0.3);
  color: #A855C0;
}

.action-btn.delete {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #EF4444;
}
.action-btn.move:hover { background: rgba(123, 45, 139, 0.2); }
.action-btn.delete:hover { background: rgba(239, 68, 68, 0.2); }

.action-btn.move {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
  color: #38BDF8;
}
.action-btn.move:hover { background: rgba(14, 165, 233, 0.2); }

.action-btn.restore {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  color: #C084FC;
}
.action-btn.restore:hover { background: rgba(168, 85, 247, 0.2); }

/* === RESERVATIONS TABLE === */
.admin-table-wrapper {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 16px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }

.admin-table tr {
  transition: var(--transition);
}

.admin-table tr:not(:first-child) {
  cursor: pointer;
}

.admin-table tr:not(:first-child):hover {
  background: rgba(255, 107, 53, 0.08);
}

.customer-name { font-weight: 700; color: white; }
.customer-contact { font-size: 0.82rem; color: var(--text-muted); }

/* === DETAIL MODAL === */
.detail-content {
  max-width: 600px !important;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.detail-modal-body {
  display: grid;
  gap: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-light);
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 1.1rem;
  color: white;
  background: rgba(255,255,255,0.03);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.detail-value.notes {
  white-space: pre-wrap;
  min-height: 100px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* === STATUS SELECTOR (Manual Modal) === */
.status-selector {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-selector-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-options {
  display: flex;
  gap: 12px;
}

.status-opt {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.status-opt .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.status-opt.pending.active {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--status-amber);
}

.status-opt.paid.active {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--status-green);
}

/* Rest of the file */
.slot-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.slot-tag.morning { background: rgba(14, 165, 233, 0.1); color: #38BDF8; }
.slot-tag.afternoon { background: rgba(255, 210, 63, 0.1); color: #FCD34D; }

/* === MOVE MODAL === */
.move-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.move-modal.show { display: flex; }

.move-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}

.move-modal-content {
  position: relative;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 520px;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.move-modal-content h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 24px;
}

.move-form { display: flex; flex-direction: column; gap: 20px; }

.move-form select {
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.move-form select:focus {
  border-color: var(--primary);
}

.move-form option { background: var(--dark-2); }
.move-form-input {
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: var(--transition);
}
.move-form-input:focus { border-color: var(--primary); }

.move-form-actions { display: flex; gap: 12px; }

.btn-primary-sm {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: var(--transition-bounce);
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  flex: 1;
}

.btn-primary-sm:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.4); }

.btn-ghost-sm {
  padding: 10px 24px;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  flex: 1;
}

.btn-ghost-sm:hover { background: rgba(255,255,255,0.08); color: white; }

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

.toast {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 280px;
  max-width: 360px;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100px) scale(0.8); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.toast.success { border-color: rgba(34, 197, 94, 0.3); }
.toast.error { border-color: rgba(239, 68, 68, 0.3); }
.toast.info { border-color: rgba(14, 165, 233, 0.3); }

.toast-icon { font-size: 1.4rem; flex-shrink: 0; }

.toast-text-wrap {}
.toast-title { font-weight: 800; color: white; font-size: 0.9rem; }
.toast-msg { color: var(--text-muted); font-size: 0.82rem; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

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

@media (max-width: 768px) {
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-views { grid-template-columns: 1fr; }
  .admin-toolbar { flex-direction: column; align-items: flex-start; }
  .toolbar-search input { width: 100%; }
}

@media (max-width: 480px) {
  .admin-stats { grid-template-columns: 1fr; }
  .admin-container { padding: 16px; }
}
