/* ===========================
   Ramisbnb - Admin Interface
   =========================== */

:root {
  --primary: #1a3c5e;
  --primary-light: #243f5c;
  --sidebar-bg: #0f2437;
  --sidebar-text: rgba(255,255,255,0.75);
  --sidebar-active: rgba(255,255,255,0.12);
  --accent: #c8a45a;
  --success: #2d7a4f;
  --success-bg: #ecfdf5;
  --error: #c0392b;
  --error-bg: #fef2f2;
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --info: #2563eb;
  --info-bg: #eff6ff;

  --bg: #f4f6f9;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  --sidebar-width: 240px;
  --topbar-height: 60px;
  --transition: 0.2s ease;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; }
input, select, textarea { font-family: var(--font); font-size: 1rem; }
ul { list-style: none; }

/* === LAYOUT === */
.admin-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 50; transition: transform var(--transition);
  overflow-y: auto;
}
.main-area { margin-left: var(--sidebar-width); flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.topbar {
  height: var(--topbar-height);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
}
.content { flex: 1; padding: 1.75rem; max-width: 1400px; }

@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: none; }
  .main-area { margin-left: 0; }
  .sidebar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 49; display: none; }
  .sidebar-overlay.show { display: block; }
}

/* === SIDEBAR === */
.sidebar-logo {
  padding: 1.5rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logo h2 { color: #fff; font-size: 1.2rem; font-weight: 800; letter-spacing: -0.3px; }
.sidebar-logo h2 span { color: var(--accent); }
.sidebar-logo p { color: var(--sidebar-text); font-size: 0.75rem; margin-top: 0.15rem; }

.sidebar-nav { padding: 1rem 0; flex: 1; }
.sidebar-section-label { padding: 0.5rem 1.25rem 0.25rem; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.35); }
.sidebar-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1.25rem; cursor: pointer;
  color: var(--sidebar-text); font-size: 0.9rem; font-weight: 500;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.sidebar-item:hover { background: var(--sidebar-active); color: #fff; }
.sidebar-item.active { background: var(--sidebar-active); color: #fff; border-left-color: var(--accent); }
.sidebar-item .icon { font-size: 1.1rem; width: 20px; text-align: center; flex-shrink: 0; }
.sidebar-badge { margin-left: auto; background: var(--error); color: #fff; border-radius: 10px; padding: 0.1rem 0.45rem; font-size: 0.72rem; font-weight: 700; }

.sidebar-footer { padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); }
.sidebar-user { display: flex; align-items: center; gap: 0.75rem; }
.sidebar-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.sidebar-user-name { font-size: 0.85rem; color: #fff; font-weight: 500; }
.sidebar-user-role { font-size: 0.73rem; color: var(--sidebar-text); }
.sidebar-logout { margin-left: auto; background: none; color: var(--sidebar-text); font-size: 0.85rem; padding: 0.25rem; transition: color var(--transition); }
.sidebar-logout:hover { color: #fff; }

/* === TOPBAR === */
.topbar-title { font-size: 1.05rem; font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.topbar-hamburger { display: none; background: none; color: var(--text-muted); font-size: 1.4rem; padding: 0.25rem; }
@media (max-width: 768px) { .topbar-hamburger { display: block; } }
.topbar-badge { background: var(--error); color: #fff; border-radius: 50%; width: 18px; height: 18px; font-size: 0.68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.2rem; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 600;
  transition: all var(--transition); cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover:not(:disabled) { background: #14304d; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover:not(:disabled) { background: #246040; }
.btn-danger { background: var(--error); color: #fff; }
.btn-danger:hover:not(:disabled) { background: #a93226; }
.btn-warning { background: var(--warning); color: #fff; }
.btn-warning:hover:not(:disabled) { background: #b45309; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); background: var(--info-bg); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover:not(:disabled) { background: var(--bg); color: var(--text); }
.btn-sm { padding: 0.35rem 0.8rem; font-size: 0.8rem; }
.btn-lg { padding: 0.75rem 1.75rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn-loading::after { content: ''; position: absolute; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff; border-radius: 50%; animation: spin 0.6s linear infinite; }
.btn-icon { padding: 0.45rem; border-radius: var(--radius-sm); }

/* === FORMS === */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.form-control {
  width: 100%; padding: 0.55rem 0.85rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; color: var(--text); background: var(--surface);
  transition: border-color var(--transition); outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,60,94,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }

/* === CARDS === */
.card { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; }
.card-header h3 { font-size: 0.95rem; font-weight: 600; }
.card-body { padding: 1.5rem; }
.card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border-light); background: var(--bg); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

/* === STAT CARDS === */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 1.75rem; }
.stat-card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stat-card .stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 0.5rem; }
.stat-card .stat-value { font-size: 1.85rem; font-weight: 800; color: var(--text); line-height: 1; }
.stat-card .stat-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; }
.stat-card.highlight { border-left: 3px solid var(--accent); }

/* === TABLE === */
.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
thead th { padding: 0.65rem 1rem; text-align: left; font-size: 0.77rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: var(--text-muted); border-bottom: 1.5px solid var(--border); background: var(--bg); }
tbody td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--bg); }
.table-actions { display: flex; gap: 0.4rem; justify-content: flex-end; }

/* === BADGES === */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.2rem 0.6rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px;
}
.badge-pending { background: #fef9e7; color: #d97706; }
.badge-accepted { background: #e8f4fd; color: #1a6fa8; }
.badge-paid { background: var(--success-bg); color: var(--success); }
.badge-cancelled { background: var(--error-bg); color: var(--error); }
.badge-rejected { background: var(--error-bg); color: var(--error); }
.badge-expired { background: #f4f4f4; color: #666; }
.badge-completed { background: #f0f0f0; color: #444; }
.badge-verified { background: var(--success-bg); color: var(--success); }
.badge-pending-doc { background: var(--warning-bg); color: var(--warning); }
.badge-unread { background: var(--error-bg); color: var(--error); }

/* === FILTERS / SEARCH === */
.filters-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.search-input { position: relative; flex: 1; min-width: 200px; }
.search-input input { padding-left: 2.25rem; }
.search-input::before { content: '🔍'; position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); font-size: 0.85rem; }
.filter-select { padding: 0.55rem 0.85rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.88rem; color: var(--text); background: var(--surface); outline: none; }
.filter-select:focus { border-color: var(--primary); }

/* === DETAIL ROWS === */
.detail-grid { display: grid; gap: 0; }
.detail-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.6rem 0; font-size: 0.9rem; border-bottom: 1px solid var(--border-light); gap: 1rem; }
.detail-row:last-child { border-bottom: none; }
.detail-row .lbl { color: var(--text-muted); font-size: 0.83rem; white-space: nowrap; flex-shrink: 0; }
.detail-row .val { font-weight: 500; text-align: right; word-break: break-word; }
.detail-row.total { font-weight: 700; }
.detail-row.total .val { color: var(--primary); font-size: 1.05rem; }

/* === CALENDAR === */
.cal-grid-wrap { overflow-x: auto; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-month-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; min-width: 420px; }
.cal-day-header { text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--text-muted); padding: 0.35rem 0; text-transform: uppercase; }
.cal-day {
  min-height: 70px; padding: 0.35rem; border: 1px solid var(--border-light);
  background: var(--surface); border-radius: var(--radius-sm);
  font-size: 0.8rem; transition: background var(--transition); cursor: default;
  position: relative;
}
.cal-day.today { border-color: var(--accent); }
.cal-day.blocked { background: #fdf2f2; }
.cal-day.booked { background: rgba(26,60,94,0.06); }
.cal-day.past { opacity: 0.5; }
.cal-day-num { font-weight: 600; color: var(--text-muted); margin-bottom: 0.2rem; }
.cal-day.today .cal-day-num { color: var(--accent); }
.cal-event { font-size: 0.7rem; padding: 0.15rem 0.35rem; border-radius: 3px; margin-bottom: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.event-booked { background: rgba(26,60,94,0.1); color: var(--primary); }
.event-blocked { background: var(--error-bg); color: var(--error); }
.cal-block-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; cursor: pointer; background: rgba(200,164,90,0.15); transition: opacity var(--transition); border: none; }
.cal-day:hover .cal-block-btn { opacity: 1; }

/* === PRICING RULES === */
.pricing-list { display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-item { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; }
.pricing-item.default { border-color: var(--accent); }
.pricing-item-info { flex: 1; }
.pricing-item-name { font-weight: 600; font-size: 0.93rem; margin-bottom: 0.2rem; }
.pricing-item-meta { font-size: 0.8rem; color: var(--text-muted); }
.pricing-item-price { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.pricing-item-price small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }
.pricing-item-actions { display: flex; gap: 0.4rem; }

/* === USER SCORE === */
.score-display { display: flex; align-items: center; gap: 0.75rem; }
.score-circle {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800;
}
.score-bar-wrap { flex: 1; }
.score-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin-top: 0.35rem; }
.score-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent), var(--success)); }

/* === MESSAGES === */
.message-list { display: flex; flex-direction: column; gap: 0; }
.message-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border-light); transition: background var(--transition); cursor: pointer; }
.message-item:hover { background: var(--bg); }
.message-item.unread { background: #f8faff; }
.message-item.unread .message-subject { font-weight: 700; }
.message-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.message-content { flex: 1; min-width: 0; }
.message-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.2rem; }
.message-name { font-weight: 600; font-size: 0.9rem; }
.message-date { font-size: 0.78rem; color: var(--text-muted); margin-left: auto; }
.message-subject { font-size: 0.88rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.message-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--info); flex-shrink: 0; margin-top: 0.35rem; }

/* === AUDIT LOG === */
.audit-row { display: flex; align-items: flex-start; gap: 1rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-light); font-size: 0.85rem; }
.audit-icon { font-size: 1rem; width: 28px; text-align: center; flex-shrink: 0; }
.audit-info { flex: 1; }
.audit-action { font-weight: 600; color: var(--text); }
.audit-detail { color: var(--text-muted); font-size: 0.8rem; }
.audit-time { font-size: 0.78rem; color: var(--text-light); text-align: right; flex-shrink: 0; }

/* === LOGIN PAGE === */
.login-page { min-height: 100vh; background: var(--sidebar-bg); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.login-card { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 2.5rem; width: 100%; max-width: 400px; }
.login-logo { text-align: center; margin-bottom: 1.75rem; }
.login-logo h2 { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.login-logo h2 span { color: var(--accent); }
.login-logo p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.twofa-section { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.twofa-section h4 { margin-bottom: 0.5rem; }
.totp-input { letter-spacing: 0.5rem; font-size: 1.5rem; text-align: center; font-weight: 700; }

/* === PROPERTY SETTINGS === */
.photos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.75rem; margin-top: 1rem; }
.photo-item { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--bg); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-remove { position: absolute; top: 0.35rem; right: 0.35rem; background: rgba(0,0,0,0.6); color: #fff; border: none; border-radius: 50%; width: 24px; height: 24px; cursor: pointer; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.photo-remove:hover { background: var(--error); }
.photo-add { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; border: 2px dashed var(--border); cursor: pointer; color: var(--text-muted); font-size: 0.82rem; transition: all var(--transition); }
.photo-add:hover { border-color: var(--primary); color: var(--primary); background: var(--info-bg); }

/* === MODAL === */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; animation: fadeIn 0.15s ease; }
.modal { background: var(--surface); border-radius: var(--radius-lg); width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: slideUp 0.2s ease; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.modal-header h3 { margin: 0; font-size: 1rem; }
.modal-close { background: none; font-size: 1.4rem; color: var(--text-muted); cursor: pointer; padding: 0.2rem; line-height: 1; border: none; }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); display: flex; gap: 0.75rem; justify-content: flex-end; }

/* === TOAST === */
#toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.6rem; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1.1rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); font-size: 0.87rem; font-weight: 500; min-width: 250px; max-width: 360px; animation: slideIn 0.25s ease; pointer-events: all; cursor: pointer; }
.toast-success { background: var(--success-bg); color: var(--success); border-left: 4px solid var(--success); }
.toast-error { background: var(--error-bg); color: var(--error); border-left: 4px solid var(--error); }
.toast-info { background: var(--info-bg); color: var(--info); border-left: 4px solid var(--info); }
.toast-warning { background: var(--warning-bg); color: var(--warning); border-left: 4px solid var(--warning); }

/* === PAGE HEADER === */
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem; }
.page-header h1 { font-size: 1.4rem; font-weight: 700; }
.page-header p { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.15rem; }
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.breadcrumb span { cursor: pointer; }
.breadcrumb span:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 0.35rem; }

/* === ALERTS === */
.alert { padding: 0.85rem 1.1rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.88rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.alert-success { background: var(--success-bg); color: var(--success); }
.alert-error { background: var(--error-bg); color: var(--error); }
.alert-info { background: var(--info-bg); color: var(--info); }
.alert-warning { background: var(--warning-bg); color: var(--warning); }

/* === LOADER === */
.spinner { width: 32px; height: 32px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.6s linear infinite; }
.page-loader { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.loader-inline { display: flex; align-items: center; justify-content: center; padding: 2rem; }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }
.text-warning { color: var(--warning); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.hidden { display: none !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.separator { height: 1px; background: var(--border); margin: 1.25rem 0; }
.danger-zone { border: 1.5px solid var(--error); border-radius: var(--radius); padding: 1.25rem; }
.danger-zone h4 { color: var(--error); margin-bottom: 0.5rem; }
.empty-state { text-align: center; padding: 3rem 2rem; color: var(--text-muted); }
.empty-state .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.empty-state h3 { color: var(--text); margin-bottom: 0.4rem; font-size: 1rem; }
.tag { display: inline-block; padding: 0.15rem 0.5rem; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; font-size: 0.75rem; color: var(--text-muted); }

/* === ANIMATIONS === */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { opacity: 0; transform: translateX(1rem); } to { opacity: 1; transform: none; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(0.75rem); } to { opacity: 1; transform: none; } }
