.rwc-reservation-widget {
  --rwc-primary: #f97316;
  --rwc-bg: #ffffff;
  --rwc-text: #111827;
  --rwc-border: #e5e7eb;
  --rwc-success: #16a34a;
  --rwc-warning: #d97706;
  --rwc-error: #dc2626;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  color: var(--rwc-text);
  font-size: 16px;
}

.rwc-reservation-widget *,
.rwc-reservation-widget *::before,
.rwc-reservation-widget *::after {
  box-sizing: border-box;
}

.rwc-res-card {
  background: var(--rwc-bg);
  border: 1px solid #f1ddc7;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
  padding: 20px;
  animation: rwc-res-step-in 200ms ease;
}

.rwc-booking-form-card,
.rwc-res-card:not(.rwc-res-card--wide) {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.rwc-res-card--wide {
  max-width: none;
}

.rwc-floor-map-card,
.rwc-floor-map-section {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 24px 40px;
  box-sizing: border-box;
}

.rwc-floor-map-card {
  position: relative;
}

.rwc-res-step-head h2 {
  margin: 10px 0 8px;
  font-size: 1.5rem;
}

.rwc-res-step-head p {
  margin: 0 0 16px;
  color: #4b5563;
  line-height: 1.5;
}

.rwc-res-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 0.82rem;
  font-weight: 800;
}

.rwc-res-grid {
  display: grid;
  gap: 14px;
}

.rwc-res-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.rwc-res-label {
  font-weight: 700;
}

.rwc-res-label--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rwc-res-label-icon {
  flex: 0 0 auto;
}

.rwc-res-input,
.rwc-res-select,
.rwc-res-textarea,
.rwc-res-stepper-input,
.rwc-res-locked-branch {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid #dec5a7;
  border-radius: 16px;
  font: inherit;
  font-size: 16px;
  background: #fff;
}

.rwc-time-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e8e0d5;
  border-radius: 8px;
  font-family: Syne, sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  box-sizing: border-box;
  cursor: pointer;
}

.rwc-time-input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.rwc-label-with-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4a3a2a;
  font-family: Syne, sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.rwc-stepper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rwc-stepper-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e8e0d5;
  background: white;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
}

.rwc-stepper-btn:hover:not(:disabled) {
  background: #fff3e0;
  border-color: #f97316;
}

.rwc-stepper-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.rwc-stepper-value {
  font-family: Syne, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  min-width: 28px;
  text-align: center;
}

.rwc-field-hint {
  font-family: Syne, sans-serif;
  font-size: 12px;
  color: #9e8e78;
  margin-top: 6px;
  display: block;
}

.rwc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: Syne, sans-serif;
  font-size: 14px;
  color: #4a3a2a;
  user-select: none;
}

.rwc-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rwc-checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #e8e0d5;
  border-radius: 5px;
  background: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.rwc-checkbox-input:checked ~ .rwc-checkbox-custom {
  background: #f97316;
  border-color: #f97316;
}

.rwc-checkbox-input:checked ~ .rwc-checkbox-custom::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.rwc-checkbox-text {
  line-height: 1.4;
  font-size: 14px;
}

.rwc-special-requests {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fff8f0;
  border: 1px solid #f97316;
  border-radius: 8px;
  font-family: Syne, sans-serif;
}

.rwc-special-requests-title {
  font-size: 12px;
  font-weight: 700;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.rwc-special-request-item {
  font-size: 14px;
  color: #4a3a2a;
  margin-bottom: 4px;
}

.rwc-result-table-name {
  margin: 4px 0 12px;
  color: #1c1917;
  font-size: 18px;
  font-weight: 700;
}

.rwc-res-textarea {
  min-height: 112px;
  resize: vertical;
}

.rwc-res-locked-branch {
  background: #f9fafb;
}

.rwc-res-entry-actions,
.rwc-res-actions,
.rwc-res-existing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rwc-res-actions {
  position: sticky;
  bottom: 0;
  padding-top: 14px;
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff 24%);
}

.rwc-res-btn {
  min-height: 44px;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease, opacity 150ms ease;
}

.rwc-res-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.rwc-res-btn--primary {
  background: var(--rwc-primary);
  color: #fff;
}

.rwc-res-btn--secondary {
  background: #111827;
  color: #fff;
}

.rwc-res-btn--ghost {
  background: #fff;
  color: #111827;
  border: 1px solid #e5d5bf;
}

.rwc-res-btn--danger {
  background: #dc2626;
  color: #fff;
  border: 1px solid #b91c1c;
}

.rwc-action-panel {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #fbbf24;
  border-radius: 24px;
  background: #fffbeb;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.rwc-action-panel__heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f2937;
}

.rwc-action-panel__summary {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

.rwc-action-panel__status {
  margin-bottom: 16px;
}

.rwc-res-phone-link {
  color: var(--rwc-primary);
  text-decoration: underline;
}

.rwc-reschedule-slot-list {
  max-height: 280px;
  overflow-y: auto;
  display: grid;
  gap: 12px;
}

.rwc-reschedule-slot {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: var(--rwc-ink);
  display: grid;
  gap: 6px;
  cursor: pointer;
}

.rwc-reschedule-slot:hover {
  border-color: rgba(214, 106, 9, 0.4);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.rwc-reschedule-slot--selected,
.rwc-reschedule-slot[aria-pressed="true"] {
  border-color: var(--rwc-primary);
  background: rgba(214, 106, 9, 0.08);
}

.rwc-res-lookup-panel {
  display: none;
  margin-top: 16px;
}

.rwc-res-lookup-panel.is-open {
  display: block;
}

.rwc-res-existing-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.rwc-res-existing-card,
.rwc-res-summary-card,
.rwc-res-recommended,
.rwc-res-info,
.rwc-res-global-error {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #f0dec7;
  background: #fffaf5;
}

.rwc-res-existing-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.rwc-res-existing-meta {
  color: #4b5563;
  margin: 8px 0 12px;
}

.rwc-res-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.rwc-res-status--pending {
  background: #fff7ed;
  color: #c2410c;
}

.rwc-res-status--confirmed {
  background: #ecfdf5;
  color: #166534;
}

.rwc-res-status--seated {
  background: #eff6ff;
  color: #1d4ed8;
}

.rwc-res-stepper {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 8px;
  align-items: center;
}

.rwc-res-stepper-btn {
  min-height: 48px;
  border: 1px solid #dec5a7;
  border-radius: 16px;
  background: #fff7ed;
  color: #c2410c;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
}

.rwc-res-floor-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.rwc-res-floor-tab {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #ecd6be;
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.rwc-res-floor-tab.is-active {
  background: #fff7ed;
  color: #c2410c;
  border-color: #f97316;
}

.rwc-res-canvas-shell {
  position: relative;
  margin-top: 14px;
}

.rwc-res-reset-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #ecd6be;
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.rwc-res-canvas-viewport {
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
  border: 1px solid #ecd6be;
  touch-action: none;
}

.rwc-res-canvas {
  position: relative;
  transform-origin: top left;
  transition: transform 150ms ease;
  width: 100%;
  max-width: 100%;
}

.rwc-res-floor-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.rwc-floor-map-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
  background: transparent;
  border-radius: 8px;
  min-height: 300px;
}

.rwc-floor-map-container.is-dragging {
  cursor: grabbing;
}

.rwc-map-wrapper {
  width: 100%;
  transform-origin: 0 0;
  will-change: transform;
}

.rwc-map-wrapper svg,
.rwc-floor-map-container svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.rwc-res-room-boundary {
  filter: drop-shadow(0 12px 20px rgba(17, 24, 39, 0.08));
}

.rwc-res-room-wall {
  opacity: 0.92;
}

.rwc-res-svg-table {
  cursor: default;
  transform-box: fill-box;
  transform-origin: center;
}

.rwc-res-svg-table[data-table-id] {
  cursor: pointer;
}

.rwc-res-svg-table-shape {
  transition: fill 150ms ease, stroke 150ms ease, opacity 150ms ease, filter 150ms ease;
}

.rwc-res-svg-table-name,
.rwc-res-svg-table-meta {
  text-anchor: middle;
  pointer-events: none;
}

.rwc-res-svg-table-name {
  font-size: 26px;
  font-weight: 800;
}

.rwc-res-svg-table-meta {
  font-size: 15px;
  font-weight: 700;
}

.rwc-res-svg-table.is-disabled {
  opacity: 0.6;
}

.rwc-res-svg-table.is-capacity {
  opacity: 0.6;
  cursor: default;
}

.rwc-res-canvas-fallback {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.rwc-res-canvas-fallback .rwc-res-table {
  position: static;
  width: 100%;
  min-width: 0;
}

.rwc-res-table {
  position: absolute;
  min-width: 88px;
  min-height: 72px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  display: grid;
  align-content: center;
  gap: 4px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06);
  cursor: pointer;
}

.rwc-res-table-name {
  font-weight: 800;
}

.rwc-res-table-context {
  font-size: 0.72rem;
  color: #6b7280;
}

.rwc-res-table-seats {
  font-size: 0.82rem;
}

.rwc-res-table-state {
  display: inline-flex;
  justify-content: center;
  align-self: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.rwc-res-table.is-recommended {
  border-color: var(--rwc-success);
  background: #ecfdf5;
  animation: rwc-res-pulse 1.4s ease-in-out infinite;
}

.rwc-res-table.is-available {
  border-color: #86efac;
  background: #f0fdf4;
}

.rwc-res-table.is-unavailable {
  border-color: #fca5a5;
  background:
    repeating-linear-gradient(-45deg, rgba(248, 113, 113, 0.12) 0, rgba(248, 113, 113, 0.12) 10px, rgba(255, 255, 255, 0.92) 10px, rgba(255, 255, 255, 0.92) 20px),
    #fef2f2;
  color: #991b1b;
  opacity: 0.75;
}

.rwc-res-table.is-disabled {
  background:
    repeating-linear-gradient(135deg, rgba(156, 163, 175, 0.14) 0, rgba(156, 163, 175, 0.14) 10px, rgba(243, 244, 246, 0.95) 10px, rgba(243, 244, 246, 0.95) 20px),
    #f3f4f6;
  border-style: dashed;
  color: #6b7280;
  opacity: 0.6;
}

.rwc-res-table[disabled] {
  cursor: not-allowed;
}

.rwc-res-empty {
  padding: 24px;
  border-radius: 20px;
  border: 1px dashed #ebcfb0;
  background: #fff;
  color: #4b5563;
}

.rwc-res-error,
.rwc-res-global-error {
  margin-top: 14px;
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.rwc-res-info {
  margin-top: 14px;
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.rwc-grace-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px 14px;
  border: 1px solid #fde047;
  border-radius: 8px;
  background: #fefce8;
  color: #713f12;
  font-size: 13px;
}

.rwc-coming-soon {
  max-width: 480px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid #f0dec7;
  background: #fffaf5;
}

.rwc-floor-modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background: #ffffff;
  z-index: 9999;
  flex-direction: column;
  overflow: hidden;
}

.rwc-floor-modal--open {
  display: flex;
}

.rwc-floor-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.4);
  z-index: 9998;
}

.rwc-floor-modal-backdrop--open {
  display: block;
}

.rwc-floor-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #e8e0d5;
  flex-shrink: 0;
  background: #fff;
}

.rwc-floor-modal__info {
  min-width: 0;
}

.rwc-floor-modal__title {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: #1a1a1a;
}

.rwc-floor-modal__subtitle {
  display: block;
  margin-top: 2px;
  font-size: 0.875rem;
  color: #7c6b58;
}

.rwc-floor-label {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #92400e;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rwc-floor-modal__close {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border: 1px solid #e8e0d5;
  border-radius: 999px;
  background: #fff;
  color: #4a3a2a;
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rwc-floor-modal__tabs-row {
  flex-shrink: 0;
  padding: 14px 24px 8px;
  border-bottom: 1px solid #e8e0d5;
  background: #faf8f5;
  overflow-x: auto;
}

.rwc-floor-modal__tabs-row .rwc-res-floor-tabs {
  margin-bottom: 0;
}

.rwc-floor-modal__map-area {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #faf8f5 0%, #f5efe5 100%);
}

.rwc-floor-modal__map-area .rwc-floor-map-card,
.rwc-floor-modal__map-area .rwc-res-canvas-shell {
  flex: 1;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.rwc-floor-modal__map-area .rwc-res-canvas-viewport,
.rwc-floor-modal__map-area #rwc-res-canvas-viewport {
  min-height: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  background: linear-gradient(180deg, #faf8f5 0%, #f5efe5 100%);
}

.rwc-floor-modal__map-area .rwc-res-canvas,
.rwc-floor-modal__map-area #rwc-res-canvas {
  min-height: 100%;
}

.rwc-floor-modal__map-area .rwc-res-reset-zoom {
  top: 16px;
  right: 16px;
}

.rwc-res-zoom-controls {
  position: absolute;
  top: 56px;
  right: 16px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rwc-res-zoom-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ecd6be;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  color: #4a3a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.rwc-zoom-hint {
  position: absolute;
  top: 100px;
  right: 16px;
  z-index: 4;
  display: block;
  margin-top: 4px;
  color: #a8a29e;
  font-size: 11px;
  text-align: center;
  transition: opacity 1s ease;
  opacity: 1;
}

.rwc-zoom-hint--hidden {
  opacity: 0;
}

.rwc-floor-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  border-top: 1px solid #e8e0d5;
  background: #fff;
  flex-shrink: 0;
}

.rwc-floor-modal__back {
  min-height: 44px;
  border: 1px solid #e8e0d5;
  border-radius: 999px;
  padding: 10px 20px;
  background: #fff;
  color: #4a3a2a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.rwc-floor-modal__legend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: #4a3a2a;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rwc-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.rwc-legend-dot--available {
  background: #7db87d;
}

.rwc-legend-dot--booked {
  background: #ef4444;
}

.rwc-legend-dot--pending {
  background: #f59e0b;
}

.rwc-legend-dot--capacity {
  background: #a8a29e;
}

.rwc-legend-label-muted {
  color: #78716c;
}

.rwc-table-tooltip {
  position: absolute;
  z-index: 9999;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
  animation: rwc-tooltip-fade 2.5s forwards;
}

@keyframes rwc-res-step-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rwc-res-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.25);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
  }
}

@keyframes rwc-recommended-glow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.5)) url(#shadow-table);
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(249, 115, 22, 1)) url(#shadow-table);
  }
}

@keyframes rwc-recommended-ring-pulse {
  0%, 100% {
    opacity: 0.6;
    stroke-width: 2;
  }
  50% {
    opacity: 1;
    stroke-width: 4;
  }
}

@keyframes rwc-tooltip-fade {
  0%, 80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.rwc-res-svg-table.is-recommended .rwc-res-svg-table-shape {
  animation: rwc-recommended-glow 1.8s ease-in-out infinite;
}

.rwc-res-svg-table.is-recommended .rwc-res-svg-recommended-ring {
  animation: rwc-recommended-ring-pulse 1.8s ease-in-out infinite;
}

@media (min-width: 768px) {
  .rwc-res-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rwc-floor-map-card,
  .rwc-floor-map-section {
    max-width: 100%;
    padding: 12px 12px 24px;
  }

  .rwc-booking-form-card,
  .rwc-res-card:not(.rwc-res-card--wide) {
    max-width: 100%;
    padding: 20px 12px;
  }

  .rwc-res-card {
    border-radius: 20px;
  }

  .rwc-res-actions,
  .rwc-res-entry-actions,
  .rwc-res-existing-actions {
    flex-direction: column;
  }

  .rwc-res-btn {
    width: 100%;
  }

  .rwc-res-canvas-viewport {
    min-height: 300px;
  }

  .rwc-res-table {
    min-width: 76px;
    min-height: 64px;
    border-radius: 16px;
  }

  .rwc-floor-modal__header {
    padding: 12px 16px;
  }

  .rwc-floor-modal__tabs-row {
    padding: 12px 16px 8px;
  }

  .rwc-floor-modal__footer {
    padding: 10px 16px;
  }

  .rwc-floor-modal__legend {
    display: none;
  }
}

/* R4.5 POS badge styles
.rwc-res-pos-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.rwc-res-pos-badge--reserved {
  background: #fff7ed;
  color: #c2410c;
}

.rwc-res-pos-badge--seated {
  background: #dcfce7;
  color: #166534;
}

.rwc-res-pos-badge--closed {
  background: #e5e7eb;
  color: #374151;
}
*/
