/* Modern Wedding Seating System Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Colors */
  --bg-gradient: linear-gradient(135deg, #faf7f2 0%, #f4eee5 100%);
  --color-gold: #c59b27;
  --color-gold-light: #fef3c7;
  --color-gold-dark: #92400e;
  
  --color-pink: #db2777;
  --color-pink-bg: #fce7f3;
  --color-blue: #2563eb;
  --color-blue-bg: #dbeafe;
  
  --color-card-bg: rgba(255, 255, 255, 0.85);
  --color-card-border: rgba(212, 175, 55, 0.25);
  --shadow-subtle: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px -10px rgba(197, 155, 39, 0.15);

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  color: #1e293b;
  min-height: 100vh;
  padding-bottom: 60px;
}

.app-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-card-border);
  padding: 24px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo-area h1 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area p {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

.nav-tabs {
  display: flex;
  gap: 8px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: var(--radius-md);
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn.active {
  background: #ffffff;
  color: var(--color-gold-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tab-btn:hover:not(.active) {
  color: #1e293b;
  background: rgba(255, 255, 255, 0.5);
}

.main-content {
  max-width: 1400px;
  margin: 32px auto;
  padding: 0 24px;
}

/* Glassmorphism Cards */
.card-glass {
  background: var(--color-card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.card-glass:hover {
  box-shadow: var(--shadow-hover);
}

/* Buttons & Custom Selects */
.btn-primary-glow {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
  transition: var(--transition);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.btn-toggle-group, .layout-toggle-group {
  display: flex;
  background: #e2e8f0;
  padding: 4px;
  border-radius: var(--radius-md);
  gap: 4px;
}

.btn-toggle {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
  transition: var(--transition);
}

.btn-toggle.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.custom-select {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  background: #ffffff;
  cursor: pointer;
}

/* Control Panel Layout */
.control-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.drag-instruction-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 12px 20px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: #92400e;
}

/* Drag and Drop & Swap Styles */
.chair-node, .u-seat-badge {
  cursor: grab;
  user-select: none;
}

.chair-node:active, .u-seat-badge:active {
  cursor: grabbing;
}

.chair-node.is-dragging, .u-seat-badge.is-dragging {
  opacity: 0.4;
  scale: 0.95;
  border: 2px dashed #d97706 !important;
}

.drop-target-hover {
  outline: 3px solid #10b981 !important;
  scale: 1.1;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4) !important;
}

.selected-for-swap {
  outline: 3px solid #d97706 !important;
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.5) !important;
  animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.preset-selector-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preset-header-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 24px;
  flex-wrap: wrap;
}

.preset-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #0f172a;
}

.preset-info p {
  color: #64748b;
  font-size: 14px;
  margin-top: 4px;
}

.preset-metrics {
  display: flex;
  gap: 12px;
}

.metric-badge {
  padding: 10px 18px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-badge.green {
  background: #dcfce7;
  color: #15803d;
}

.metric-badge.gold {
  background: #fef3c7;
  color: #b45309;
}

.metric-value {
  font-size: 18px;
  font-weight: 700;
}

.metric-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Round Tables Grid */
.round-tables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 24px 0;
}

.round-table-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.table-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.table-title h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.seat-count {
  font-size: 12px;
  font-weight: 600;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 20px;
  color: #475569;
}

.round-table-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #f8fafc 100%);
  border: 3px dashed var(--table-color, #cbd5e1);
  margin: 40px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.center-label {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-label .num {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}

.center-label .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #94a3b8;
}

.chairs-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.chair-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  margin-left: -26px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.chair-node:hover {
  scale: 1.15;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.chair-node.side-ieva {
  border-color: var(--color-pink);
  background: var(--color-pink-bg);
  color: #9d174d;
}

.chair-node.side-tomas {
  border-color: var(--color-blue);
  background: var(--color-blue-bg);
  color: #1e40af;
}

.chair-node.vip-chair {
  border-color: var(--color-gold);
  background: var(--color-gold-light);
  color: var(--color-gold-dark);
}

.chair-avatar {
  font-weight: 700;
  font-size: 13px;
}

.chair-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 44px;
  font-size: 9px;
}

/* U-Shape Layout Visualizer */
.u-shape-container {
  padding: 30px 20px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

.u-wall-indicator {
  text-align: center;
  padding: 8px;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
  color: #64748b;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.u-table-section {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid #e2e8f0;
}

.u-head-table {
  margin-bottom: 24px;
}

.u-head-table.narrow-head-4 {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
  border: 2px solid var(--color-gold);
}

.u-seats-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: stretch;
  gap: 12px;
  margin-top: 12px;
  padding: 8px 0;
}

.u-seats-row .u-seat-badge {
  flex: 1 1 0;
  min-width: 100px;
  text-align: center;
}

.u-middle-area.double-sided-layout {
  display: grid;
  grid-template-columns: 340px 1fr 340px;
  gap: 24px;
  min-height: 400px;
}

.double-sided-columns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.wing-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px dashed #cbd5e1;
}

.col-lbl {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 4px;
  border-bottom: 1px solid #f1f5f9;
}

.u-seats-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.u-center-dance-floor {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(254, 243, 199, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
  text-align: center;
  padding: 40px;
}

.floor-graphic h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-gold-dark);
  margin-top: 10px;
}

.floor-graphic p {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

.u-seat-badge {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.u-seat-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.u-seat-badge.side-ieva {
  border-left: 4px solid var(--color-pink);
  background: #fff5f7;
}

.u-seat-badge.side-tomas {
  border-left: 4px solid var(--color-blue);
  background: #f0f7ff;
}

.u-seat-badge.vip-crown {
  border-left: 4px solid var(--color-gold);
  background: #fffbeb;
}

.u-seat-name {
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}

.u-seat-role {
  font-size: 11px;
  color: #64748b;
}

.u-seat-age {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 2px;
}

/* Table Breakdown Cards */
.table-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.breakdown-header {
  padding-left: 12px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breakdown-header h4 {
  font-size: 16px;
  font-weight: 700;
}

.breakdown-header .badge {
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.guest-mini-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  border: 1px solid #f1f5f9;
}

.guest-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.guest-item .dot.ieva { background: var(--color-pink); }
.guest-item .dot.tomas { background: var(--color-blue); }

.g-comment {
  font-size: 11px;
  color: #94a3b8;
  margin-left: auto;
}

/* Guest Management Styles */
.guest-summary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.summary-stat {
  display: flex;
  flex-direction: column;
}

.summary-stat .num {
  font-size: 24px;
  font-weight: 800;
}

.summary-stat .lbl {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.filter-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  width: 320px;
}

.search-box input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  margin-left: 8px;
}

.side-filter-group {
  display: flex;
  gap: 8px;
}

.btn-chip {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-chip.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.custom-table th, .custom-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}

.custom-table th {
  background: #f8fafc;
  font-weight: 700;
  color: #475569;
}

.guest-inactive {
  opacity: 0.4;
  background: #f8fafc;
}

.tag {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

.tag.ieva { background: var(--color-pink-bg); color: var(--color-pink); }
.tag.tomas { background: var(--color-blue-bg); color: var(--color-blue); }
.tag.gold { background: var(--color-gold-light); color: var(--color-gold-dark); }
.tag.purple { background: #f3e8ff; color: #7e22ce; }
.tag.green { background: #dcfce7; color: #15803d; }
.tag.red { background: #fee2e2; color: #b91c1c; }

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #cbd5e1;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider { background-color: #10b981; }
input:checked + .slider:before { transform: translateX(20px); }

.btn-danger-sm {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-danger-sm:hover {
  background: #ef4444;
  color: #ffffff;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop.hidden { display: none; }

.modal-box {
  width: 480px;
  max-width: 90%;
  background: #ffffff;
}

.modal-box h3 {
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.form-group input, .form-group select {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 14px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

/* Family Tree & Rules */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.rule-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.rule-card.mandatory { border-left: 4px solid var(--color-gold); }
.rule-card.critical { border-left: 4px solid #ef4444; background: #fff5f5; }
.rule-card.preference { border-left: 4px solid #3b82f6; }

.rule-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rule-header h4 {
  font-size: 14px;
  font-weight: 700;
}

.trees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.tree-node-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: var(--radius-md);
  margin-top: 10px;
  border: 1px solid #e2e8f0;
}

.branch-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 12px;
  border: 1px solid #e2e8f0;
}

.branch-card h4 {
  font-size: 15px;
  color: var(--color-pink);
  margin-bottom: 8px;
}

.branch-members {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.branch-members li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px dashed #f1f5f9;
}

/* Venue overview */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.venue-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.venue-features-list li {
  display: flex;
  gap: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.feat-icon {
  font-size: 20px;
}

.config-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.config-box {
  background: #ffffff;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
}

.config-box h4 {
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 8px;
}

.config-box ul {
  padding-left: 20px;
  font-size: 13px;
  color: #475569;
}

/* CMS Custom Presets Styles */
.section-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-banner h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #0f172a;
}

.section-banner p {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

.presets-cms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.preset-cms-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--color-gold);
}

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

.layout-chip {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

.layout-chip.round { background: var(--color-pink-bg); color: var(--color-pink); }
.layout-chip.ushape { background: var(--color-gold-light); color: var(--color-gold-dark); }

.cms-date {
  font-size: 11px;
  color: #94a3b8;
}

.cms-card-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.base-origin {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 14px;
}

.mini-metrics {
  font-size: 13px;
  color: #475569;
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.cms-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.empty-cms-card {
  text-align: center;
  padding: 48px;
  margin-top: 24px;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

/* Responsive & Print */
@media print {
  .app-header, .control-panel, .filter-controls, .action-buttons {
    display: none !important;
  }
  body {
    background: #ffffff;
  }
}
