body {
  font-family: "Raleway", sans-serif !important;
  background-color: white;
}

/* ── Suppress browser-native password reveal button ─────────────────────
   Edge / IE add a built-in eye icon inside <input type="password">.
   Chrome (newer) can also add one via :-webkit-credentials-auto-fill-button.
   Both clash visually with our custom input-group toggle button.         */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}
input[type="password"]::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
}

.site-content {
  overflow: hidden;
}

.mukta-font {
  font-family: 'Mukta', sans-serif;
  font-size: 15px !important;
}

/* IMP */
/* Navbar css */
@media (max-width: 991.98px) {
  .offcanvas-body ul {
    margin-top: 1px !important;
  }
}

/* ── Admin sidebar ──────────────────────────────────────────────────────
   Merged from app.blade.php <style> block (removed from there).
   Dark navy background, scroll when nav items overflow.                 */
#adminSidebar {
  width: 250px;
  overflow-y: auto;
  background-color: #1e2130 !important;
  min-width: 220px;
}

/* Bootstrap 5.3 CSS variables: control active pill appearance */
#adminSidebar .nav-pills {
  --bs-nav-pills-link-active-bg: rgba(255, 255, 255, 0.15);
  --bs-nav-pills-link-active-color: #ffffff;
}

/* Hover effect on non-active items */
#adminSidebar .nav-link:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
}

/* Blue left border accent on the active item */
#adminSidebar .nav-link.active {
  border-left: 3px solid #7eb3ff;
  padding-left: calc(var(--bs-nav-link-padding-x) - 3px);
}

/* ── Admin panel utility classes ────────────────────────────────────────
   Replace inline style="..." attributes across admin blade files.
   All classes are prefixed with "admin-" to avoid collision with
   Bootstrap utilities or public-site styles.                            */

/* Card header background used across all admin cards */
.admin-card-header {
  background-color: #f8f9fc;
}

/* Table <thead> background / admin main-content area background */
.admin-thead-bg {
  background-color: #f0f2f7;
}

/* Main content area background (same shade as admin-thead-bg) */
.admin-main-bg {
  background-color: #f0f2f7;
}

/* Font-size utilities for admin list/table text */
.admin-text-sm  { font-size: 0.875rem; }   /* ~14 px — primary list text   */
.admin-text-xs  { font-size: 0.78rem;  }   /* ~12.5 px — secondary text    */
.admin-text-xxs { font-size: 0.75rem;  }   /* ~12 px — tertiary / dates    */

/* Modal body text */
.admin-modal-body { font-size: 0.9rem; }

/* Sidebar monogram badge (32 × 32 square used in both mobile & desktop) */
.admin-sidebar-badge {
  width: 32px;
  height: 32px;
  font-size: 14px;
  letter-spacing: 0;
}

/* User avatar initials circle in the users table */
.admin-user-avatar {
  width: 34px;
  height: 34px;
  font-size: 13px;
}

/* Square icon-only action buttons (edit / delete) */
.admin-icon-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  line-height: 30px;
  text-align: center;
}
.admin-icon-btn i {
  font-size: 0.75rem;
}

/* Table column width constraints */
.admin-col-serial { width: 56px;      }
.admin-col-action { width: 90px;      }
.admin-col-email  { max-width: 220px; }

/* Responsive: event_image and event_time (still used in blade) */
@media screen and (min-width: 576px) and (max-width: 768px) {
  .event_image {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 576px) {
  .event_time {
    font-size: 10px !important;
  }
}

/* for event page */
.highlight {
  background-color: #ddd;
  border: 1px solid black !important;
  color: white;
  text-decoration: none;
}

.date-highlight {
  background-color: rgb(170, 50, 16) !important;
  text-decoration: none;
}

.time {
  cursor: pointer !important;
}

/* seat booking box highlight css — kept for JS compatibility */
.seat_highlight {
  background-color: #198754 !important;
  color: #fff !important;
}


.hr-class {
  border: none;
  border-top: 2px solid #F08143;
  opacity: 0.6;
}

/* for slider images */
.img-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;

}

.img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* para scroll css */
#scrollBox::-webkit-scrollbar {
  display: none;
}

#scrollBox {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Imp — scoped to public site, not admin sidebar */
.site-content .nav-link.active {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

/* Imp */
.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.card-footer {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px;
  background: rgb(238, 238, 238);
}

/* IMP */
.eque {
  background-color: rgb(234, 215, 204);
}
/* IMP */
.eque-dark {
  background-color: rgb(231, 205, 189);
}


.bi-chevron-down {
  transition: transform 0.3s ease;
}
/* Imp */
.cyan-color {
  background-color: #66C3D0 !important;
}
/* Imp */
.orange-btn-bg {
  background-color: #F08143 !important;
}

.orange-text {
  color: #F08143 !important;
}
/* Imp — scoped to public site, not admin sidebar */
:not(#adminSidebar) > .offcanvas-body .nav-link,
.site-content .nav-link {
  color: #000;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
/* Imp */
.site-content .nav-link.active-border {
  border-bottom: 4px solid #F08143 !important;
  color: #000;
}

/* contribute table css */

/* For mobile view  */
@media screen and (max-width: 767px) {
  .table thead {
    display: none;
    /* hide table header */
  }

  .table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid black;
  }

  .table td {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0.5rem;
    border-bottom: 1px solid black !important;
    padding: 0 !important;
    padding-right: 0.5rem !important;
  }

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

  .table td::before {
    content: attr(data-label);
    font-weight: bold;
    border-right: 1px solid black !important;
    padding-left: 0.5rem !important;
  }

  /* Section rows stay full width */
  .table .section {
    display: block;
    padding: 0.75rem;
    border: none;
    background: #e9ecef;
  }

  .table .section-row td {
    display: block !important;
    grid-template-columns: none !important;

    text-align: left;
    padding: 0.75rem !important;
    font-weight: bold;
  }

  .table .section-row td::before {
    content: none !important;
    border-right: none !important;
    border: none !important;
    padding: 1px !important;
  }

  .table td:empty,
  .table td[data-empty="1"] {
    display: none !important;
    border: none !important;
    padding: 0 !important;
  }

}

/* ── Bootstrap 5.3 Utility Extensions ──────────────────────────────────────
   These extend Bootstrap 5.3 with additional utilities for common styling
   patterns used throughout the admin dashboard. Replaces inline styles.       */

/* Width utilities (custom pixel values) */
.w-50px  { width: 50px;  }
.w-80px  { width: 80px;  }
.w-120px { width: 120px; }
.w-130px { width: 130px; }
.w-210px { width: 210px; }

/* Height utilities */
.h-130px { height: 130px; }

/* Max-height utilities */
.max-h-150px { max-height: 150px; }

/* Min-width utilities */
.min-w-140px { min-width: 140px; }

/* Max-width utilities */
.max-w-200px  { max-width: 200px;  }
.max-w-350px  { max-width: 350px;  }

/* Word-break utilities */
.word-break-break-word { word-break: break-word; }

/* ══════════════════════════════════════════════════════════════════════════
   Event Calendar Page — Public Site Redesign
   All classes prefixed rm- to avoid collision with existing styles.
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Event Calendar Page Layout ───────────────────────────────────────── */
.rm-page-bg {
  background: #f5f6fa;
  min-height: 100vh;
}

/* Sticky calendar sidebar on desktop */
.rm-calendar-sticky {
  position: sticky;
  top: 1rem;
}

/* ── Hero Banner ─────────────────────────────────────────────────────── */
.rm-page-hero {
  background: linear-gradient(135deg, #1e2130 0%, #2a3045 100%);
  padding: 1.25rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}
/* Decorative half-circles */
.rm-page-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: #F08143;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.08;
}
.rm-page-hero::after {
  content: '';
  position: absolute;
  bottom: -35px;
  left: -45px;
  width: 100px;
  height: 100px;
  background: #66C3D0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.07;
}
.rm-hero-half {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.rm-hero-half-1 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid #66C3D0;
  opacity: 0.1;
}
.rm-hero-half-2 {
  width: 50px;
  height: 50px;
  bottom: -25px;
  right: 30%;
  background: #F08143;
  opacity: 0.05;
}

.rm-hero-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}
.rm-hero-title i {
  color: #F08143;
  margin-right: 5px;
  font-size: 1.1rem;
}

.rm-hero-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0.15rem 0 0;
}

/* Stats */
.rm-hero-stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #F08143;
  line-height: 1;
}
.rm-hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.rm-hero-stat-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.15);
}

/* ── Calendar Grid ────────────────────────────────────────────────────── */
.rm-calendar-box {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.rm-cal-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.rm-cal-arrow:hover {
  border-color: #F08143;
  color: #F08143;
  background: #fff5f0;
}

.rm-cal-month-btn {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.rm-cal-month-btn:hover {
  color: #F08143;
}

/* 7-column grid */
.rm-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

/* Weekday header labels */
.rm-cal-weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
}

/* Base day cell */
.rm-cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  transition: all 0.15s ease;
}

/* Day number — clear and sharp */
.rm-cal-day-num {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: #222;
}

/* Outside current month — blank */
.rm-cal-day-outside {
  visibility: hidden;
}

/* Today indicator */
.rm-cal-day-today {
  background: #f0f0f0;
  border: 2px solid #ccc;
}
.rm-cal-day-today .rm-cal-day-num {
  color: #111;
  font-weight: 800;
}

/* Event day (clickable) */
.rm-cal-day-event {
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
}
.rm-cal-day-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-color: #F08143;
}
/* Event day number — subtle underline to indicate event exists */
.rm-cal-day-event .rm-cal-day-num {
  color: #111;
  font-weight: 800;
  border-bottom: 2px solid #F08143;
  padding-bottom: 2px;
}

/* Highlighted / selected date */
.rm-cal-day-event.date-highlight {
  background: #fff5f0 !important;
  border-color: #F08143 !important;
}
.rm-cal-day-event.date-highlight .rm-cal-day-num { color: #F08143 !important; }

/* Clicked / user-selected date */
.rm-cal-day-event.highlight {
  background: #f5f5f5 !important;
  border-color: #333 !important;
}
.rm-cal-day-event.highlight .rm-cal-day-num { color: #222 !important; }

/* ── Calendar Legend ──────────────────────────────────────────────────── */
.rm-cal-legend-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.rm-cal-legend-event {
  background: transparent;
  border-bottom: 2px solid #F08143;
  border-radius: 0;
  height: 2px;
  width: 14px;
  align-self: center;
}
.rm-cal-legend-today {
  background: #f0f0f0;
  border: 1.5px solid #ccc;
}

/* ── Section Heading ──────────────────────────────────────────────────── */
.rm-section-heading {
  border-left: 4px solid #F08143;
  margin: 0 0 1.25rem;
}

/* ── Age Rating Badge ────────────────────────────────────────────────── */
.rm-age-badge {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  cursor: help;
  vertical-align: middle;
}

/* ── Price Badge ─────────────────────────────────────────────────────── */
.rm-price-badge {
  display: inline-block;
  background: #fff5f0;
  color: #F08143;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  border: 1px solid rgba(240,129,67,0.2);
  white-space: nowrap;
  flex-shrink: 0;
}
.rm-price-free {
  background: #f0fdf4;
  color: #22c55e;
  border-color: rgba(34,197,94,0.2);
}

/* ── Event Card ───────────────────────────────────────────────────────── */
.rm-event-card {
  transition: box-shadow 0.2s, transform 0.2s;
}
.rm-event-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-2px);
}

/* Event image wrapper inside card */
.rm-event-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  min-height: 200px;
}
.rm-event-img-wrap .carousel-inner {
  border-radius: 10px;
}
.rm-event-img-wrap .img-wrapper {
  min-height: 200px;
  padding: 0;
}
.rm-event-img-wrap .img-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
}

/* Event metadata icon color */
.rm-meta-icon {
  color: #F08143;
  margin-right: 3px;
}

/* Description strip below image + action area */
.rm-event-desc-strip {
  line-height: 1.7;
  color: #666;
}

/* Social media icons row */
.rm-social-link {
  color: #555;
  font-size: 1.1rem;
  margin-right: 0.5rem;
  transition: color 0.15s;
}
.rm-social-link:hover {
  color: #F08143;
}

/* ── Time Slot Pills ──────────────────────────────────────────────────── */
.rm-time-pill {
  display: inline-block;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  margin: 0 0.25rem 0.4rem 0;
  font-size: 0.73rem;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  background: #fff;
  color: #333;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  text-decoration: none !important;
  white-space: nowrap;
}
.rm-time-pill:hover {
  border-color: #66C3D0;
  background: #f0fafb;
  transform: translateY(-1px);
}

/* Time separator */
.rm-time-sep {
  color: #bbb;
  margin: 0 2px;
  font-size: 0.7rem;
}

/* Selected time slot */
.rm-time-pill.highlight {
  background-color: #66C3D0 !important;
  border-color: #66C3D0 !important;
  color: #fff !important;
}

/* Past event time slots */
.rm-time-pill-past {
  display: inline-block;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  margin: 0 0.25rem 0.4rem 0;
  font-size: 0.73rem;
  line-height: 1.3;
  text-align: center;
  background: #f8f9fa;
  color: #aaa;
  pointer-events: none;
  white-space: nowrap;
}

/* ── Book Now Button ──────────────────────────────────────────────────── */
.rm-book-btn {
  background-color: #F08143;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: background-color 0.2s, transform 0.1s;
}
.rm-book-btn:hover {
  background-color: #d96b2a;
  color: #fff;
  transform: translateY(-1px);
}

/* ── Responsive adjustments ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .rm-calendar-sticky {
    position: static;
  }
  .rm-event-img-wrap .img-wrapper img {
    height: 220px;
  }
  .rm-section-heading {
    margin-top: 1rem;
  }
}
@media (max-width: 767.98px) {
  .rm-page-hero {
    padding: 1rem 0;
  }
  .rm-hero-title {
    font-size: 1.05rem;
  }
  .rm-hero-stat-num {
    font-size: 1.1rem;
  }
  .rm-event-img-wrap .img-wrapper img {
    height: 200px;
  }
  .rm-cal-month-btn {
    font-size: 1.05rem;
  }
  .rm-cal-day-num {
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   Footer
   ══════════════════════════════════════════════════════════════════════════ */
.rm-footer {
  background: linear-gradient(180deg, #1e2130 0%, #171926 100%);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

/* Orange accent line at top */
.rm-footer-edge {
  height: 3px;
  background: linear-gradient(90deg, #F08143 0%, #66C3D0 50%, #F08143 100%);
}

.rm-footer-main {
  padding: 2.5rem 0 1.5rem;
}

/* Brand */
.rm-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.rm-footer-brand i {
  font-size: 1.6rem;
  color: #F08143;
}
.rm-footer-brand span {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}

.rm-footer-about {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  max-width: 320px;
}

/* Social icons */
.rm-footer-socials {
  display: flex;
  gap: 8px;
}
.rm-footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
}
.rm-footer-socials a:hover {
  background: #F08143;
  border-color: #F08143;
  color: #fff;
  transform: translateY(-2px);
}

/* Column headings */
.rm-footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #F08143;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 8px;
}
.rm-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #F08143;
  border-radius: 2px;
}

/* Links */
.rm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rm-footer-links li {
  margin-bottom: 0.6rem;
}
.rm-footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.15s, padding-left 0.15s;
}
.rm-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

/* Contact icon accent */
.rm-footer-icon {
  color: #66C3D0;
  margin-right: 4px;
  font-size: 0.78rem;
}

/* Bottom bar */
.rm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.rm-footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.rm-heart {
  color: #F08143;
  font-size: 0.7rem;
  animation: rm-pulse 2s ease-in-out infinite;
}
@keyframes rm-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Decorative half-circles clipped at edges */
.rm-footer-half {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.07;
}
/* Large orange half — bottom-right, clipped right */
.rm-footer-half-1 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  right: -140px;
  background: #F08143;
}
/* Medium cyan half — top-left, clipped left */
.rm-footer-half-2 {
  width: 180px;
  height: 180px;
  top: 20px;
  left: -90px;
  background: #66C3D0;
}
/* Small orange half — bottom-left corner */
.rm-footer-half-3 {
  width: 100px;
  height: 100px;
  bottom: -50px;
  left: 8%;
  background: #F08143;
  opacity: 0.04;
}
/* Tiny cyan ring — right side, mid-height */
.rm-footer-half-4 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 5%;
  background: transparent;
  border: 2px solid #66C3D0;
  opacity: 0.08;
}

/* Footer responsive */
@media (max-width: 767.98px) {
  .rm-footer-main {
    padding: 2rem 0 1rem;
  }
  .rm-footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   SEAT SELECTION PAGE
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Progress Bar ───────────────────────────────────────────────────────── */
.rm-progress-active {
  color: #F08143 !important;
}
.rm-progress-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e9ecef;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.rm-progress-active .rm-progress-dot {
  background: #F08143;
  color: #fff;
}
.rm-progress-line {
  width: 40px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 6px;
}
/* ── Legend Chips ────────────────────────────────────────────────────────── */
.rm-seat-legend-chip {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: inline-block;
}
.rm-seat-legend-available {
  background: #e9ecef;
  border: 1.5px solid #ccc;
}
.rm-seat-legend-selected {
  background: #198754;
}
.rm-seat-legend-booked {
  background: #dc3545;
}

/* ── Seat Grid ──────────────────────────────────────────────────────────── */
.rm-row-label {
  font-weight: 800;
  font-size: 0.85rem;
  color: #1e2130;
  min-width: 28px;
  text-align: center;
  margin-right: 10px;
  flex-shrink: 0;
}

/* ── Individual Seat ────────────────────────────────────────────────────── */
.rm-seat {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}
.rm-seat-available {
  background: #e9ecef;
  color: #555;
}
.rm-seat-available:hover {
  background: #d4edda;
  color: #198754;
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(25,135,84,0.25);
}
.rm-seat-selected,
.rm-seat.seat_highlight {
  background: #198754 !important;
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(25,135,84,0.3);
}
.rm-seat-booked {
  background: #dc3545;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ── Stage ──────────────────────────────────────────────────────────────── */
.rm-stage-bar {
  width: 70%;
  max-width: 400px;
  height: 6px;
  background: linear-gradient(90deg, #66C3D0, #F08143);
  border-radius: 3px;
}

/* ── Summary Panel ──────────────────────────────────────────────────────── */
.rm-seat-summary-sticky {
  position: sticky;
  top: 80px;
}
.rm-seat-summary-title {
  border-bottom: 2px solid #F08143;
}
.rm-seat-summary-total span:last-child {
  color: #F08143;
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}
.rm-seat-chip {
  display: inline-block;
  background: #f0fdf4;
  color: #198754;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(25,135,84,0.2);
}

/* Submit Button */
.rm-seat-submit-btn {
  background: #F08143;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  transition: all 0.18s ease;
}
.rm-seat-submit-btn:hover {
  background: #d96b2a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240,129,67,0.3);
}
.rm-seat-submit-btn:disabled {
  background: #ccc;
  color: #888;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

/* ── Seat Page Responsive ───────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .rm-seat-summary-sticky {
    position: static;
  }
  .rm-progress-line {
    width: 24px;
  }
}
@media (max-width: 575.98px) {
  .rm-seat {
    width: 28px;
    height: 28px;
    font-size: 0.6rem;
  }
  .rm-row-label {
    font-size: 0.75rem;
    min-width: 22px;
    margin-right: 6px;
  }
}

/* ── Brand Utility Classes ──────────────────────────────────────────────── */
.rm-text-orange { color: #F08143 !important; }

/* ── Processing Page ───────────────────────────────────────────────────── */
.rm-processing-ring {
  background: linear-gradient(135deg, #F08143, #d96b2a);
  box-shadow: 0 4px 20px rgba(240,129,67,0.35);
  animation: rm-ring-pulse 2s ease-in-out infinite;
}
@keyframes rm-ring-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(240,129,67,0.35); }
  50% { box-shadow: 0 4px 30px rgba(240,129,67,0.15), 0 0 0 12px rgba(240,129,67,0.08); }
}
.rm-processing-dot {
  background: #66C3D0;
  animation: rm-pulse 1.4s ease-in-out infinite;
}
.rm-processing-dot-2 { animation-delay: 0.2s; }
.rm-processing-dot-3 { animation-delay: 0.4s; }
@keyframes rm-pulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════════════════════
   Auth Pages (Login / Register / Password Reset)
   ══════════════════════════════════════════════════════════════════════════ */
.text-center > div > a > svg {
  filter: invert(0.2);
}
.text-center h1 {
  color: #333;
  letter-spacing: 0.5px;
}
.text-center > p {
  color: #999;
}

/* ══════════════════════════════════════════════════════════════════════════
   Admin Seat Layout (venue seat editor)
   ══════════════════════════════════════════════════════════════════════════ */
.seat-size {
  margin: 2px;
  display: inline-block;
}
.btn-size {
  width: 38px;
  height: 38px;
  font-size: 0.68rem;
  font-weight: 700;
  background: #e9ecef;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s;
}
.admin-seat-btn:hover .btn-size {
  background: #dc3545;
  color: #fff;
}
.row-label {
  font-weight: 800;
  font-size: 0.9rem;
  color: #1e2130;
  min-width: 28px;
  text-align: center;
}
