/* filepath: c:\xampp\htdocs\dashboard\eventRB_rcmp\public\css\theme.css */
/* Maroon + Pastel unified theme used across header, footer, calendar, forms */

:root {
  /* Palette (from image)
     - warm terracotta / primary:  #B77466
     - cream accent:               #FFE1AF
     - soft blush / secondary:     #E2B59A
     - deep taupe / accent-dark:   #957C62
  */
  --primary: #3E3232;
  --primary-2: #503C3C;
  --accent-cream: #7E6363;
  --accent-soft: #A87C7C;
  --muted: #5b4a42;
  /* comfortable text color */
  --pastel-cream: #fff4e9;
  --pastel-blush: #f8e3e3;
  --pastel-taupe: #e2cfc4;
  --pastel-terracotta: #B77466;
  --card-shadow: 0 6px 24px rgba(87, 64, 58, 0.06);
  --glass: rgba(255, 255, 255, 0.80);
  --bg: #fff8f6;
  --danger: #dc2626;
}

/* Subtle background image under existing gradients */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: url('../img/bg_uniklrcmp.jpg') center/cover no-repeat;
      opacity: .07;
      /* adjust between .05 ~ .15 */
      pointer-events: none;
      z-index: -1;
    }
/* Global typography and base */
body,
.btn,
input,
select,
textarea {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--muted);
}

/* Navbar */
.navbar {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), var(--pastel-cream));
  border-bottom: 1px solid rgba(123, 30, 45, 0.04);
  padding: .6rem 0;
}

.navbar .navbar-brand {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.4px;
}

.navbar .nav-link {
  color: #444;
}

.navbar .nav-link:hover {
  color: var(--maroon);
}

/* Buttons used in header / CTAs */
.btn-header {
  background: linear-gradient(180deg, var(--accent-cream), var(--accent-soft));
  color: var(--primary);
  border-radius: 10px;
  padding: .45rem .7rem;
  border: 1px solid rgba(149, 124, 98, 0.08);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(87, 64, 58, 0.04);
}

.btn-header:hover {
  color: var(--bg);
  background: linear-gradient(180deg, var(--accent-soft), var(--accent-cream));

}

/* Primary action buttons */
.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 26px rgba(151, 124, 98, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 5px #fff;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Secondary buttons */
.btn-secondary {
  background: linear-gradient(90deg, var(--accent-soft), var(--accent-cream));
  color: var(--primary-2);
  border: 1px solid rgba(149, 124, 98, 0.06);
  box-shadow: 0 8px 20px rgba(151, 124, 98, 0.06);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 800;
}

.btn-secondary:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

/* Outline / light buttons */
.btn-outline {
  background: linear-gradient(90deg, #fff, #fff8f6);
  border: 1px dashed rgba(149, 124, 98, 0.06);
  color: var(--primary-2);
}

/* Cards and panels */
.card,
.hero-card,
.stat-card {
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(123, 30, 45, 0.04);
  background: linear-gradient(180deg, #fff, var(--glass));
}

/* Inputs & selects */
.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid rgba(123, 30, 45, 0.08);
  padding: .55rem .75rem;
  background: #fff;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 6px 18px rgba(123, 30, 45, 0.06);
  border-color: var(--maroon-2);
  outline: none;
}

/* Badges */
.badge-maroon {
  background: linear-gradient(90deg, var(--primary-2), var(--primary));
  color: #fff;
  padding: 6px 10px;
  font-weight: 700;
  border-radius: 999px;
}

/* Suggestions / availability boxes */
#busyList {
  background: linear-gradient(180deg, #fff9f9, #fff1f1);
  border-left: 4px solid #f2c8c9;
  color: #7b1e2d;
}

#freeList {
  background: linear-gradient(180deg, #f7fff7, #f0fff1);
  border-left: 4px solid #bfe6c5;
  color: #2b5a33;
}

/* Footer */
footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--pastel-cream));
  border-top: 1px solid rgba(123, 30, 45, 0.04);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

footer .small {
  color: #586066;
}

/* Calendar overrides */
.fc .fc-button-primary {
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  border-color: var(--primary-2);
  color: #fff;
}

/* 
.fc .fc-daygrid-event {
  background: linear-gradient(90deg, #fff6f5, #fff3f1);
  border: 1px solid rgba(151,124,98,0.08);
  color: var(--primary-2);
  border-radius: 6px;
  padding: 3px 6px;
} */

/* Table and list visuals */
.custom-table th {
  background: linear-gradient(90deg, rgba(183, 116, 102, 0.06), rgba(226, 181, 154, 0.02));
  color: var(--primary-2);
}

.custom-table td {
  background: #fff;
}

/* =========================
   UI polish for Room management
   ========================= */

/* Variables */
:root {
  --bg: #fbf8f9;
  --card: #ffffff;
  --muted: #6b7280;
  --accent-1: #8b5cf6;
  /* purple */
  --accent-2: #06b6d4;
  /* teal */
  --danger: #ef4444;
  --surface-shadow: 0 6px 30px rgba(12, 24, 48, 0.06);
  --radius: 14px;
  --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 249, 250, 0.98));
}

/* Base adjustments */
body {
  background:
    radial-gradient(circle at 12% 18%, #d5818e 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 88% 82%, #fdd5db 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(150deg, #fff, #fff6f7 65%, #ffeef1);
  font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui;
  color: #0f1724;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

/* Page container */
.content-wrap {
  max-width: 1200px;
  margin: 28px auto;
  padding: 0 18px;
}

/* Page header */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.page-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #062a3a;
  letter-spacing: -0.2px;
}

.page-actions .btn {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}

/* Card base */
.card,
.card-body,
.form-card,
.detail-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--surface-shadow);
  border: 1px solid rgba(9, 30, 66, 0.04);
}

/* Table look */
.table-clean {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  overflow: hidden;
  border-radius: 10px;
}

.table-clean thead th {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.06), rgba(6, 182, 212, 0.02));
  color: #0b2540;
  font-weight: 800;
  padding: 12px 14px;
  border-bottom: none;
  text-align: left;
  font-size: 0.95rem;
}

.table-clean tbody td {
  background: var(--card);
  padding: 14px;
  vertical-align: middle;
  border-top: 1px solid rgba(9, 30, 66, 0.03);
  color: #123;
}

.table-clean tbody tr:hover td {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 24, 48, 0.04);
}

/* Room name style */
.room-name a {
  color: var(--accent-1);
  font-weight: 700;
  text-decoration: none;
}

.room-name a:hover {
  text-decoration: underline;
  color: var(--accent-2);
}

/* Badges and small metadata */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  /* color: #042433;
  background: linear-gradient(90deg, #c7f9f2, #dbeafe); */
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-light {
  background: #fff;
  border: 1px solid rgba(9, 30, 66, 0.05);
  color: #08203a;
  border-radius: 10px;
  padding: 8px 12px;
}

.btn-outline {
  background: linear-gradient(90deg, #fff, #fff8f6);
  border: 1px dashed rgba(149, 124, 98, 0.06);
  color: var(--primary-2);
}

.btn-outline:hover {
  filter: brightness(0.95);
}

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

/* Danger / delete button */
.btn-danger {
  background: linear-gradient(90deg, #ef4444, #dc2626);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.08);
}

.btn-danger:hover {
  filter: brightness(0.95);
}

/* Small utilities */
.form-help {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive tweaks */
.table-responsive {
  overflow: auto;
  border-radius: 10px;
}

@media (max-width:900px) {
  .table-clean thead {
    display: none;
  }

  .table-clean tbody td {
    display: block;
    width: 100%;
  }

  .table-clean tbody tr {
    margin-bottom: 12px;
    display: block;
    background: var(--card);
    padding: 12px;
  }

  .table-clean tbody td::before {
    font-weight: 700;
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
  }
}

/* Form layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-grid .form-group {
  display: flex;
  flex-direction: column;
}

.form-actions {
  grid-column: 1/-1;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 8px;
}

/* Detail list */
.detail-list dt {
  color: var(--muted);
  font-weight: 700;
  margin-top: 10px;
}

.detail-list dd {
  margin: 0 0 10px 0;
  color: #072236;
  font-weight: 600;
}

/* Inline form for delete button */
.inline-form {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.inline-form button {
  background: transparent;
  border: none;
  color: var(--danger);
  padding: 6px 8px;
  cursor: pointer;
}

/* small shadowed empty card */
.empty-card {
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid rgba(9, 30, 66, 0.03);
  box-shadow: 0 8px 22px rgba(12, 24, 48, 0.03);
  color: var(--muted);
}

/* Accessibility: focus */
a:focus,
button:focus,
input:focus,
select:focus {
  outline: 3px solid rgba(99, 102, 241, 0.14);
  outline-offset: 3px;
}

/* Room cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
  
}

.room-card {
  background: linear-gradient(90deg, #ffffff, #fbfbff);
  border-radius: 12px;
  box-shadow: var(--surface-shadow);
  padding: 14px;
  border: 1px solid rgba(9, 30, 66, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.room-card .card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.card-index {
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  color: #fff;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 10px;
  min-width: 44px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(11, 20, 40, 0.06);
}

.card-title a {
  color: #062a3a;
  font-weight: 800;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

.card-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 14px;
  margin-bottom: 12px;
}

.card-meta dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.card-meta dd {
  margin: 0;
  color: #0b2540;
  font-weight: 700;
}

.card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 6px;
}

.card-actions .btn {
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
}

@media (max-width:1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:700px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card-meta {
    grid-template-columns: 1fr;
  }

  .card-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

}

/* Manage Booking specific styles (moved from inline) */
.manage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.manage-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #0b2540;
}

.role-chip {
  background: linear-gradient(90deg, #fff6f5, #fff8f6);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: #243b53;
  box-shadow: 0 6px 18px rgba(11, 37, 64, 0.04);
}

.section-card {
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 37, 64, 0.04);
  box-shadow: 0 12px 30px rgba(11, 37, 64, 0.04);
  margin-bottom: 20px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(90deg, #ffffff, #fbfbff);
  border-bottom: 1px solid rgba(11, 37, 64, 0.03);
}

.section-head h5 {
  margin: 0;
  font-weight: 800;
  color: #062a3a;
}

.count-badge {
  background: linear-gradient(90deg, #6ee7b7, #34d399);
  color: #043127;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(52, 211, 153, 0.08);
}

.table-wrap {
  padding: 14px 18px;
  background: #fff;
}

.table.table-sm th,
.table.table-sm td {
  vertical-align: middle;
  padding: 14px 12px;
}

.table.table-sm thead th {
  font-weight: 800;
  color: #0b2540;
  border-bottom: 2px solid rgba(11, 37, 64, 0.04);
}

.badge-status {
  background: linear-gradient(90deg, #d9f7ef, #e6fffa);
  color: #0b6448;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-block;
}

.btn-open {
  background: linear-gradient(90deg, #fff, #f7fff7);
  color: #0b6448;
  border: 1px solid rgba(11, 37, 64, 0.04);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.btn-open:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(11, 37, 64, 0.04);
}

.small-help {
  color: #6b7280;
  font-size: 0.95rem;
  margin-top: 6px;
}

/* pager */
.pager {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.pager button {
  border: 1px solid rgba(11, 37, 64, 0.06);
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.pager button.active {
  background: linear-gradient(90deg, #6c5ce7, #5b8def);
  color: #fff;
  box-shadow: 0 10px 26px rgba(108, 92, 231, 0.12);
}

.pager .info {
  color: #6b7280;
  font-size: 0.95rem;
  margin-left: 8px;
}

/* responsive */
@media (max-width:900px) {
  .manage-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .table.table-sm th,
  .table.table-sm td {
    padding: 10px 8px;
    font-size: 0.95rem;
  }
}

/* /* Manage Booking / Booking View — enhanced, committee-friendly styles */

/* Layout */
.booking-ticket {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.page-title .pill {
  background: linear-gradient(90deg, #ffecec, #f7fff7);
  color: #0b2540;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(11, 37, 64, 0.04);
}

/* two-column responsive grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items: start;
}

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.info-card,
.feedback-panel {
  background: linear-gradient(180deg, #fff, #fbfbff);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(11, 37, 64, 0.04);
  box-shadow: 0 12px 30px rgba(11, 37, 64, 0.04);
}

/* Section title inside cards */
.section-title {
  font-weight: 800;
  color: #08202b;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

/* Row fields */
.row-field {
  display: flex;
  gap: 12px;
  margin: 12px 0;
  align-items: flex-start;
}

.row-field strong {
  width: 160px;
  color: #173444;
  font-weight: 800;
}

.kv {
  flex: 1;
  color: #273b47;
  line-height: 1.4;
}

.kv small {
  color: #6b7280;
}

/* Highlight important metadata */
.meta-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: #506070;
  font-weight: 600;
}

.meta-item {
  background: #fbfbff;
  border: 1px solid rgba(11, 37, 64, 0.03);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Status badges — clear, actionable colors */
.status-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  color: #08202b;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(11, 37, 64, 0.04);
}

.status-available {
  background: linear-gradient(90deg, #34d399, #10b981);
}

.status-not_available {
  background: linear-gradient(90deg, #ff7a7a, #ff6b6b);
}

.status-pending {
  background: linear-gradient(50deg, #d8cbca, #CD2C58);
}

.status-approved {
  background: linear-gradient(50deg, #B4DEBD, #FFF7DD);
}

/* Proposal / file button */
.proposal-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-2), var(--primary));
  color: #fff;
  box-shadow: 0 12px 30px rgba(151, 124, 98, 0.12);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.proposal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(91, 141, 239, 0.14);
}

/* Feedback panel specifics */
.feedback-panel .feedback-hint {
  color: #334d5a;
  font-size: 0.96rem;
  margin-bottom: 10px;
}

.feedback-panel ul {
  margin: 8px 0 12px 0;
  padding-left: 16px;
  color: #243b53;
}

.feedback-panel li {
  margin: 10px 0;
}

.feedback-panel .status-badge {
  margin-left: 8px;
  vertical-align: middle;
}

.feedback-panel form {
  margin-top: 12px;
}

.feedback-panel .form-label {
  font-weight: 700;
  color: #123;
  margin-bottom: 6px;
  display: block;
}

.feedback-panel .form-select,
.feedback-panel .form-control,
.feedback-panel textarea.form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(11, 37, 64, 0.06);
  background: #fff;
  transition: box-shadow .12s ease, transform .08s ease;
}

.feedback-panel .form-select:focus,
.feedback-panel textarea.form-control:focus,
.feedback-panel .form-control:focus {
  outline: none;
  box-shadow: 0 10px 30px rgba(91, 141, 239, 0.08);
  border-color: rgba(91, 141, 239, 0.9);
}

/* Action buttons in feedback */
.feedback-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}


.btn-outline {
  background: #fff;
  border: 1px solid rgba(11, 37, 64, 0.06);
  padding: 10px 12px;
  color: #1f2937;
  border-radius: 10px;
  text-decoration: none;
}

/* Compact alert used for cancelled state */
.alert-compact {
  background: #fff7f7;
  border-left: 4px solid #ff6b6b;
  padding: 10px;
  border-radius: 8px;
  color: #6b1c1c;
  margin-top: 12px;
}

/* Proposal modal tweaks */
.modal-content {
  border-radius: 12px;
  overflow: hidden;
}

.modal-body iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* small helpers */
.text-muted.small {
  color: #6b7280;
  font-size: 0.9rem;
}

.kv ul {
  margin: 0;
  padding-left: 16px;
}

/* Accessibility */
.feedback-panel .form-select:focus-visible,
.feedback-panel textarea.form-control:focus-visible {
  outline: 3px solid rgba(91, 141, 239, 0.18);
  outline-offset: 3px;
}

/* Back button near title */
.back-btn {
  display: inline-block;
  margin-right: 10px;
  color: #0b2540;
  font-weight: 800;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(11, 37, 64, 0.04);
  background: #fff;
}

.back-btn:hover {
  background: #f3f6f9;
}

/* Admin feedback layout */
.admin-feedback {
  margin-top: 12px;
}

.admin-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.btn-danger {
  background: linear-gradient(90deg, #ef4444, #dc2626);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 800;
}

.btn-outline {
  background: #fff;
  border: 1px solid rgba(11, 37, 64, 0.06);
  padding: 8px 12px;
  border-radius: 10px;
  color: #1f2937;
}

.btn-outline:hover {
  background: #f8fafc;
}

/* small modal-like container (kept simple) */
#rejectModal {
  background: #fff;
  border: 1px solid rgba(11, 37, 64, 0.06);
  padding: 12px;
  border-radius: 10px;
  margin-top: 10px;
}

@media print {

  /* hide app header/footer/navigation and action buttons */
  nav,
  .navbar,
  header,
  footer,
  .page-title .pill,
  .btn,
  .proposal-btn,
  .admin-actions,
  .back-btn {
    display: none !important;
  }

  /* ensure table fills printable width */
  .container,
  .booking-ticket {
    width: 100% !important;
    margin: 0;
    padding: 0;
  }

  table {
    font-size: 11px;
  }
}

/* PIC presentation in reports */
.pic {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pic-name {
  font-weight: 700;
  color: var(--primary-2);
}

.pic-email {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===== Animations ===== */
:root{
  --ease-out: cubic-bezier(.21,1,.21,1);
  --anim-short: 200ms;
  --anim-med: 520ms;
}

/* Reveal on scroll */
[data-animate]{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--anim-med) var(--ease-out),
              transform var(--anim-med) var(--ease-out),
              filter var(--anim-med) var(--ease-out);
  will-change: opacity, transform, filter;
}
[data-animate].in{ opacity:1; transform:none; }
[data-animate="fade-in"]{ transform:none; }
[data-animate="fade-up"]{ transform:translateY(18px); }
[data-animate="slide-left"]{ transform:translateX(22px); }
[data-animate="slide-right"]{ transform:translateX(-22px); }
.delay-100{ transition-delay:.1s!important; }
.delay-200{ transition-delay:.2s!important; }
.delay-300{ transition-delay:.3s!important; }

/* Hover lift (cards/buttons) */
.hover-lift{
  transition: transform var(--anim-short) var(--ease-out), box-shadow var(--anim-short) var(--ease-out);
}
.hover-lift:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -18px rgba(15,23,36,.35);
}

/* Subtle floating gradient accent (optional) */
@keyframes floaty {
  0%,100%{ transform: translateY(0) scale(1); filter: hue-rotate(0deg); }
  50%{ transform: translateY(-6px) scale(1.01); filter: hue-rotate(10deg); }
}
.accent-float{
  position: relative;
  isolation: isolate;
}
.accent-float::after{
  content:"";
  position:absolute; inset:-8px;
  background: radial-gradient(600px 120px at 20% 0%, rgba(13,110,253,.08), transparent 60%),
              radial-gradient(600px 120px at 80% 100%, rgba(8,145,178,.08), transparent 60%);
  border-radius: 16px;
  animation: floaty 8s ease-in-out infinite;
  z-index:-1;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  [data-animate], .hover-lift, .accent-float::after{
    animation:none!important; transition:none!important; transform:none!important;
  }
}