/* --- Allgemeine Layout-Ergänzungen --- */
.tool-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.tool-intro h2 {
  font-family: 'Alata', sans-serif;
  margin-bottom: 0.8rem;
  color: var(--fg);
}

.tool-intro p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --- Zwei-Spalten-Layout (für abwärtskompatible Styles) --- */
.tool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 992px) {
  .tool-grid {
    grid-template-columns: 1fr; /* Stacked layout */
  }
}

/* --- Linke Spalte: Katalog --- */
.catalog-panel {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
}

@media (min-width: 992px) {
  .catalog-panel {
    position: static;
    max-height: none;
    overflow-y: visible;
    padding-right: 1.5rem;
  }
}

.catalog-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
}

.catalog-header h3 {
  font-family: 'Alata', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 0.4rem 0;
  color: var(--fg);
}

.catalog-header p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Tabs/Kategoriefilter */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-tab {
  background: #f1f5f9;
  color: var(--muted);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.filter-tab:hover {
  background: #e2e8f0;
  color: var(--fg);
}

.filter-tab.active {
  background: var(--brand);
  color: #ffffff;
}

/* Kachel-Grid (jetzt vertikale Liste untereinander) */
.catalog-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Kacheln (Leistungskarten) */
.lk-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: grab;
  user-select: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
  .lk-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.lk-card:active {
  cursor: grabbing;
}

.lk-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-2);
}

.lk-card.dragging {
  opacity: 0.4;
  border: 2px dashed var(--brand);
}

.lk-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.lk-card__id {
  background: #eff6ff;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.lk-card__points {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.lk-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--fg);
  line-height: 1.3;
}

.lk-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.25rem 0;
  line-height: 1.4;
  flex-grow: 1; /* Schiebt Footer nach unten */
}

@media (min-width: 768px) {
  .lk-card__desc {
    margin: 0 1.5rem 0 0;
  }
}

.lk-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.8rem;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .lk-card__footer {
    flex-shrink: 0;
    border-top: none;
    border-left: 1px solid #f1f5f9;
    padding-top: 0;
    padding-left: 1.5rem;
    margin-top: 0;
    flex-direction: column;
    align-items: flex-end;
    min-width: 170px;
    gap: 0.4rem;
  }
}

.lk-card__price {
  font-weight: 700;
  color: var(--fg);
  font-size: 1.05rem;
}

.lk-card__price small {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.75rem;
}

.btn-add-lk {
  border: 1px solid #e2e8f0;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  background: #ffffff;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.15s ease;
}

.btn-add-lk:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

.icon-plus {
  width: 14px;
  height: 14px;
}

/* --- Rechte Spalte: Wunschzettel / Plan --- */
.plan-sidebar {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 992px) {
  .plan-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}

/* Wunschzettel-Box */
.plan-container {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.plan-container.drag-over {
  border: 2px dashed var(--brand);
  background: rgba(43, 124, 255, 0.03);
  transform: scale(1.01);
}

.plan-header {
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.8rem;
}

.plan-header h3 {
  font-family: 'Alata', sans-serif;
  font-size: 1.4rem;
  margin: 0 0 0.3rem 0;
  color: var(--fg);
}

.plan-header p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Pflegegrad-Auswahl */
.patient-info-box {
  background: var(--surface);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid #e2e8f0;
}

.patient-info-box label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.select-styled {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--fg);
  font-weight: 600;
  cursor: pointer;
}

.select-styled:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(43, 124, 255, 0.15);
}

/* Leerer Plan Platzhalter */
.empty-plan {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
}

.empty-plan svg {
  width: 48px;
  height: 48px;
  stroke: #94a3b8;
  margin-bottom: 0.8rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.empty-plan h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.3rem 0;
  color: var(--fg);
}

.empty-plan p {
  font-size: 0.9rem;
  margin: 0;
  max-width: 250px;
  line-height: 1.4;
}

/* --- Wunschzettel: Neue Einsatz-Struktur (Morgens, Mittags, Abends, Zusatz) --- */
.plan-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.plan-slot-group {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-slot-group:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.plan-slot-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.8rem;
}

@media (min-width: 600px) {
  .plan-slot-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.plan-slot-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-slot-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.plan-slot-title h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--fg);
  font-family: 'Alata', sans-serif;
}

.plan-slot-meta {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

/* Mini-Wochenplaner im Header */
.day-planner-mini {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}

@media (min-width: 600px) {
  .day-planner-mini {
    align-items: flex-end;
  }
}

.day-bubbles-mini {
  display: flex;
  gap: 0.2rem;
}

.day-bubble-mini {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s ease;
  font-family: inherit;
}

.day-bubble-mini:hover {
  border-color: var(--brand-2);
  color: var(--brand);
}

.day-bubble-mini.active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 2px 5px rgba(43, 124, 255, 0.25);
}

.day-presets-mini {
  display: flex;
  gap: 0.3rem;
}

.preset-btn-mini {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: var(--muted);
  padding: 0.1rem 0.4rem;
  font-size: 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: all 0.15s ease;
}

.preset-btn-mini:hover {
  background: #f1f5f9;
  color: var(--fg);
  border-color: #cbd5e1;
}

/* Leistungselemente im Slot */
.plan-slot-items {
  min-height: 50px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 2px dashed transparent;
}

.plan-slot-items.drag-enter {
  border-color: var(--brand-2);
  background: rgba(43, 124, 255, 0.02);
}

.plan-row-mini {
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.2s ease;
  position: relative;
}

.plan-row-mini:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.plan-row-mini.flash-highlight {
  animation: flash-yellow 1.5s ease-in-out;
}

.plan-row-mini__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.plan-row-mini__title-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-row-mini__id {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
}

.plan-row-mini__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.plan-row-mini__price-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-row-mini__price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
}

.plan-slot-subtotal {
  align-self: flex-end;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  border-top: 1px solid #f1f5f9;
  width: 100%;
  text-align: right;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}

.plan-slot-empty-text {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: var(--surface);
}

/* --- Add-Dropdown Menu für Katalog --- */
.add-dropdown-container {
  position: relative;
  display: inline-block;
}

.add-dropdown-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 100;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  padding: 0.4rem 0;
  margin-bottom: 0.5rem;
  transform: translateY(5px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.add-dropdown-container.open .add-dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-item {
  background: transparent;
  border: none;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s ease;
}

.dropdown-item:hover {
  background: var(--surface);
  color: var(--brand);
}

/* --- Berechnungs-Widget (Zusammenfassung) --- */
.summary-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-card h4 {
  font-family: 'Alata', sans-serif;
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  color: var(--brand-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.6rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

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

.summary-item label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.summary-item span {
  font-size: 1.2rem;
  font-weight: 700;
}

.summary-item span small {
  font-size: 0.75rem;
  font-weight: 400;
  color: #94a3b8;
}

/* Budget-Balken */
.budget-bar-container {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.budget-status-text {
  font-size: 0.85rem;
  color: #e2e8f0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.budget-bar__bg {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.budget-bar__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.bg-success { background-color: #22c55e !important; } /* Grün */
.bg-warning { background-color: #f59e0b !important; } /* Orange */
.bg-danger { background-color: #ef4444 !important; }  /* Rot */

/* Resultat-Auflistung */
.result-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.result-row strong {
  color: #ffffff;
  font-size: 1rem;
}

.value-danger {
  color: #f87171 !important; /* Roter Zuzahlungs-Text */
  font-weight: 700;
}

.value-success {
  color: #4ade80 !important; /* Grüner Eigenanteil 0,00 */
  font-weight: 700;
}

.pg1-note {
  background: rgba(43, 124, 255, 0.05);
  border: 1px dashed var(--brand);
  color: var(--fg);
  border-radius: 8px;
  padding: 0.8rem;
  font-size: 0.85rem;
  line-height: 1.45;
  margin-top: 1rem;
}

/* Aktionen */
.sidebar-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

@media (min-width: 600px) and (max-width: 991px) {
  .sidebar-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.sidebar-actions .btn {
  width: 100%;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.sidebar-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--ghost-dark {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: var(--fg);
}

.btn--ghost-dark:hover:not([disabled]) {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.btn-action-icon {
  width: 16px;
  height: 16px;
}

/* --- Collapsible Katalog Akkordeon --- */
.catalog-collapsible-container {
  margin-bottom: 2rem;
}
.btn-toggle-catalog {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--fg);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
  font-family: inherit;
}
.btn-toggle-catalog:hover {
  background: var(--surface);
  border-color: var(--brand-2);
}
.btn-toggle-catalog .toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}
.btn-toggle-catalog.open .toggle-icon {
  transform: rotate(180deg);
}
.catalog-panel-collapsed {
  display: none;
  margin-top: 1rem;
  animation: slideDown 0.25s ease-out;
}
.catalog-panel-collapsed.open {
  display: block;
}

/* --- "+ Leistung hinzufügen" Button in Slots --- */
.btn-add-to-slot {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  margin-top: 0.5rem;
}
.btn-add-to-slot:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(43, 124, 255, 0.02);
  transform: translateY(-1px);
}

/* --- Modal Overlay & Content --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: #ffffff;
  border-radius: var(--radius);
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.open .modal-content {
  transform: translateY(0);
}
.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  font-family: 'Alata', sans-serif;
  font-size: 1.3rem;
  margin: 0;
  color: var(--fg);
}
.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s ease;
}
.modal-close-btn:hover {
  color: var(--fg);
}
.modal-body {
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Search box in Modal */
.modal-search-box input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--fg);
  box-sizing: border-box;
  transition: all 0.15s ease;
}
.modal-search-box input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(43, 124, 255, 0.15);
}

/* Modal list and items */
.modal-lk-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 0.25rem;
}
.modal-lk-item-container {
  display: flex;
  flex-direction: column;
}
.modal-lk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.15s ease;
  background: var(--surface);
}
.modal-lk-row:hover {
  border-color: var(--brand-2);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.modal-lk-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-grow: 1;
  cursor: pointer;
}
.modal-lk-id {
  background: #eff6ff;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  flex-shrink: 0;
}
.modal-lk-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
  line-height: 1.3;
}
.modal-lk-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 1rem;
}
.btn-lk-info-trigger {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.15s ease;
  box-sizing: border-box;
}
.btn-lk-info-trigger:hover {
  color: var(--brand);
  background: rgba(43, 124, 255, 0.08);
}
.btn-modal-add {
  background: var(--brand);
  color: #ffffff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-modal-add:hover {
  background: var(--brand-2);
}
.modal-lk-detail-pane {
  display: none;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
  padding: 0.8rem 1rem;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-top: none;
  border-radius: 0 0 8px 8px;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

/* --- PRINT STYLESHEET (Hochwertiges PDF) --- */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt !important;
    font-family: 'Quicksand', sans-serif !important;
  }
  
  /* Alles Verstecken außer dem eigentlichen Plan und der Kostenübersicht */
  .site-header,
  .breadcrumbs,
  .hero,
  #was-steht-mir-zu,
  #leistungen-katalog,
  #planer-rechner .tool-intro,
  .transparency-highlight-box,
  .planning-assistant-card,
  .patient-info-box,
  .day-presets-mini,
  .preset-btn-mini,
  .btn-remove-row,
  .btn-add-to-slot,
  .sidebar-actions,
  #kontakt,
  .site-footer,
  #back-to-top,
  .floating-contact-hub,
  #lk-modal,
  .consent-banner,
  .day-bubble-mini:not(.active) {
    display: none !important;
  }
  
  /* Print-Header erzeugen */
  body::before {
    content: "AMS Pflegedienst GmbH\nKostenkalkulation (Unverbindlicher Pflegeplan)";
    display: block;
    text-align: center;
    font-family: 'Alata', sans-serif;
    font-size: 16pt;
    font-weight: bold;
    margin-bottom: 15pt;
    border-bottom: 2pt solid #0f3ea5;
    padding-bottom: 10pt;
  }

  #planer-rechner {
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
  }

  .plan-sidebar {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .plan-container {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 20pt !important;
    min-height: auto !important;
  }

  .plan-header {
    border-bottom: 1px solid #000000 !important;
    padding-bottom: 5pt !important;
    margin-bottom: 15pt !important;
  }

  .plan-header h3 {
    font-size: 14pt !important;
    color: #000000 !important;
  }

  .plan-slot-group {
    page-break-inside: avoid;
    border: 1px solid #cccccc !important;
    border-radius: 6px !important;
    padding: 10pt !important;
    margin-bottom: 12pt !important;
    box-shadow: none !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .plan-slot-header {
    border-bottom: 1px solid #eeeeee !important;
    padding-bottom: 5pt !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .plan-slot-title h4 {
    font-size: 12pt !important;
    color: #000000 !important;
    margin: 0 !important;
  }

  .plan-slot-meta {
    font-size: 8pt !important;
    color: #555555 !important;
  }

  .plan-row-mini {
    page-break-inside: avoid;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    padding: 8pt 10pt !important;
    background: #ffffff !important;
    box-shadow: none !important;
    margin-bottom: 6pt !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .plan-row-mini__header {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .plan-row-mini__title {
    font-size: 10pt !important;
    color: #000000 !important;
    margin: 0 !important;
  }

  .plan-row-mini__id {
    border: 1px solid #cccccc !important;
    color: #333333 !important;
    font-size: 7.5pt !important;
    background: #ffffff !important;
    padding: 1px 4px !important;
    border-radius: 4px !important;
  }

  .plan-row-mini__price {
    font-size: 9pt !important;
    color: #000000 !important;
  }

  .plan-row-mini__details {
    border-top: 1px solid #eeeeee !important;
    padding-top: 4pt !important;
    margin-top: 4pt !important;
  }

  .day-bubbles-mini {
    display: inline-flex !important;
    gap: 4px !important;
  }

  .day-bubble-mini.active {
    background: #0f3ea5 !important;
    color: #ffffff !important;
    border-color: #0f3ea5 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    font-weight: bold !important;
    display: inline-grid !important;
    width: 20pt !important;
    height: 20pt !important;
    border-radius: 50% !important;
    place-items: center !important;
  }

  .plan-slot-subtotal {
    font-size: 9pt !important;
    color: #000000 !important;
    border-top: 1px solid #dddddd !important;
    padding-top: 5pt !important;
    text-align: right !important;
  }

  .summary-card {
    background: #f8fafc !important;
    color: #000000 !important;
    border: 1px solid #cccccc !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    page-break-inside: avoid;
    margin-top: 20pt;
    padding: 15pt !important;
  }
  
  .summary-card h4 {
    color: #0f3ea5 !important;
    border-bottom: 1px solid #cccccc !important;
    font-size: 13pt !important;
    padding-bottom: 5pt !important;
    margin-top: 0 !important;
  }
  
  .summary-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15pt !important;
  }

  .summary-item label,
  .result-row {
    color: #333333 !important;
    font-size: 9pt !important;
  }
  
  .summary-item span,
  .result-row strong {
    color: #000000 !important;
    font-size: 11pt !important;
  }
  
  .summary-breakdown {
    border-top: 1px solid #cccccc !important;
    padding-top: 6pt !important;
    color: #555555 !important;
  }

  .summary-breakdown span {
    color: #000000 !important;
  }
  
  .budget-bar-container {
    display: none !important;
  }

  .result-list {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4pt !important;
    margin-top: 10pt !important;
  }

  .result-row {
    display: flex !important;
    justify-content: space-between !important;
    border-bottom: 1px dashed #dddddd !important;
    padding-bottom: 4pt !important;
    margin-bottom: 4pt !important;
  }

  .result-row:last-child {
    border-bottom: none !important;
  }

  .value-success {
    color: #15803d !important; /* Dunkelgrün für Print */
  }

  .value-danger {
    color: #b91c1c !important; /* Dunkelrot für Print */
  }

  .pg1-note {
    border: 1px dashed #0284c7 !important;
    background: #f0f9ff !important;
    color: #0369a1 !important;
    padding: 8pt !important;
    margin-top: 10pt !important;
    border-radius: 6px !important;
  }
  
  #hw-note {
    border: 1px dashed #22c55e !important;
    background: #f0fdf4 !important;
    color: #15803d !important;
  }
  
  /* Footer */
  body::after {
    content: "AMS Pflegedienst GmbH | Dycker Feld 24-26, 42653 Solingen | Tel: 0212-38 38 29 51\nDies ist eine unverbindliche Kostenkalkulation. Finale Preise werden im persönlichen Erstgespräch ermittelt.";
    display: block;
    text-align: center;
    font-size: 8pt;
    color: #555555;
    margin-top: 30pt;
    border-top: 1px solid #cccccc;
    padding-top: 10pt;
    white-space: pre-line;
  }
}

/* ==========================================================================
   Sektion 1: Mobile-Responsive Tabelle & FAQ-Akkordeon (Screen Styles)
   ========================================================================== */

/* 1. Desktop & Tablet Tabelle: Mindestbreite festlegen */
@media (min-width: 768px) {
  .responsive-table {
    min-width: 700px;
  }
}

/* 2. Mobile Tabelle: In Karten-Layout kollabieren */
@media (max-width: 767px) {
  .table-responsive-container {
    overflow-x: visible !important;
    border: none !important;
    background: transparent !important;
  }

  table.responsive-table, 
  table.responsive-table thead, 
  table.responsive-table tbody, 
  table.responsive-table th, 
  table.responsive-table td, 
  table.responsive-table tr { 
    display: block; 
  }

  /* Kopfzeile ausblenden */
  table.responsive-table thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  /* Jede Zeile wird zu einer Karte */
  table.responsive-table tr {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
  }

  /* Jede Zelle verhält sich wie ein Flex-Row */
  table.responsive-table td { 
    border: none;
    border-bottom: 1px solid #f1f5f9; 
    padding: 0.75rem 1rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    box-sizing: border-box;
  }

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

  /* Linksbündiges Label für das Zellen-Attribut */
  table.responsive-table td:before { 
    content: attr(data-label);
    font-weight: 700;
    color: var(--fg);
    text-align: left;
    font-size: 0.85rem;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  /* Spezielles Styling für die Pflegegrad-Zelle als Card-Header */
  table.responsive-table td[data-label="Pflegegrad"] {
    background: var(--surface);
    text-align: center;
    justify-content: center;
    padding-left: 1rem !important;
    font-size: 1.05rem;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 700;
    color: var(--brand);
  }

  table.responsive-table td[data-label="Pflegegrad"]::before {
    display: none;
  }
}

/* 3. FAQ Akkordeon (Ergänzende Veredelung für .teaser-faq auf dieser Seite) */
.teaser-faq details {
  transition: all 0.25s ease;
}

.teaser-faq details[open] {
  box-shadow: 0 4px 15px rgba(43, 124, 255, 0.08) !important;
}

.teaser-faq summary {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  font-family: 'Alata', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  transition: background-color 0.15s ease;
  user-select: none;
}

.teaser-faq summary::-webkit-details-marker {
  display: none;
}

.teaser-faq summary::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform 0.2s ease;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.teaser-faq details[open] summary::after {
  transform: rotate(180deg);
  color: var(--brand);
}

.teaser-faq details > div {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  border-top: 1px solid #f1f5f9;
  padding-top: 0.8rem;
  margin-top: 0.6rem !important;
}

/* --- LK 31 Promo Box (imitiert .vorteil__solution von pflege.html) --- */
.lk31-promo-box {
  position: relative;
  padding: 16px 16px 14px;
  border-left: 4px solid var(--brand);
  background: rgba(15, 62, 165, 0.05);
  border-radius: 12px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.lk31-promo-box h4 {
  font-family: 'Alata', sans-serif;
  font-size: 1.15rem;
  margin: 0 0 0.5rem 0;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lk31-promo-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* --- Transparency Highlight Box --- */
.transparency-highlight-box {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
              linear-gradient(135deg, var(--brand) 0%, #1e40af 50%, #0a0f1d 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 12px 30px rgba(15, 62, 165, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.transparency-highlight-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(107, 182, 255, 0.2) 0%, transparent 70%);
  filter: blur(25px);
  pointer-events: none;
  z-index: 1;
}

.transparency-highlight-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  filter: blur(25px);
  pointer-events: none;
  z-index: 1;
}

.transparency-highlight-box h3,
.transparency-highlight-box p {
  position: relative;
  z-index: 2;
}

.transparency-highlight-box h3 {
  font-family: 'Alata', sans-serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0 0 0.85rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.transparency-highlight-box p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin: 0;
}

.transparency-highlight-box p strong {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 767px) {
  .transparency-highlight-box {
    padding: 1.75rem 1.25rem;
    margin-bottom: 2rem;
  }
  .transparency-highlight-box h3 {
    font-size: 1.15rem;
    gap: 0.5rem;
  }
  .transparency-highlight-box p {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}


/* --- Intro Navigation Buttons Sektion --- */
.intro-nav-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.intro-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.intro-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- LK31 Info Tipp Box --- */
.lk31-hint-box {
  background: rgba(43, 124, 255, 0.04);
  border: 1px solid rgba(43, 124, 255, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  margin: 1.5rem auto 0;
  max-width: 680px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  box-shadow: 0 2px 8px rgba(43, 124, 255, 0.02);
}

.lk31-hint-box .hint-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.lk31-hint-box p {
  margin: 0;
  color: var(--muted);
}

/* ==========================================================================
   Mobile-Optimierungen für maximale Plan-Breite (Wunschzettel / Rechner)
   ========================================================================== */
@media (max-width: 767px) {
  /* 1. Sektions-Padding am Rand verringern */
  #planer-rechner.section {
    padding-left: 0;
    padding-right: 0;
  }
  #planer-rechner .section-inner {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  /* 2. Plan-Container (Hauptkarte) auflösen und Polsterung sparen */
  .plan-container {
    padding: 1rem 0.25rem;
    border: none;
    box-shadow: none;
    background: transparent;
    min-height: auto;
  }
  
  .plan-header {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  /* 3. Wochentags-Auswahlbox Polsterung verringern */
  .patient-info-box {
    padding: 0.85rem 0.75rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  /* 4. Slot-Gruppen (Morgens, Mittags...) kompakter machen */
  .plan-slot-group {
    padding: 0.85rem 0.75rem;
    border-radius: 10px;
    gap: 0.75rem;
  }
  
  .plan-slot-header {
    padding-bottom: 0.6rem;
    gap: 0.5rem;
  }

  /* 5. Einzelne Leistungskomplex-Zeilen kompakter gestalten */
  .plan-row-mini {
    padding: 0.75rem 0.65rem;
    border-radius: 8px;
    gap: 0.5rem;
  }
  
  .plan-row-mini__header {
    gap: 0.5rem;
  }
  
  .plan-row-mini__details {
    padding-top: 0.5rem;
    margin-top: 0.15rem;
    gap: 0.4rem;
  }

  /* 6. Kostenübersichts-Karte kompakter gestalten */
  .summary-card {
    padding: 1.25rem 0.85rem;
    border-radius: 10px;
  }
  
  .summary-grid {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .result-list {
    padding: 0.85rem 0.75rem;
  }

  /* 7. Action-Buttons im Sidebar-Bereich anpassen */
  .sidebar-actions {
    padding: 0 0.25rem;
  }
}

/* Spezialanpassung für extrem schmale Bildschirme */
@media (max-width: 360px) {
  .day-bubble-mini {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  
  .day-bubbles-mini {
    gap: 0.15rem;
  }
  
  .preset-btn-mini {
    padding: 0.1rem 0.3rem;
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   Schritt-für-Schritt Planungs-Assistent (Wizard Styles)
   ========================================================================== */
.planning-assistant-card {
  background: #ffffff;
  border: 1px solid rgba(43, 124, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(43, 124, 255, 0.04);
  box-sizing: border-box;
}

.assistant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.assistant-title-area {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.assistant-icon {
  font-size: 2rem;
  line-height: 1;
}

.assistant-title-area h3 {
  font-family: 'Alata', sans-serif;
  font-size: 1.25rem;
  color: var(--brand);
  margin: 0 0 0.25rem 0;
}

.assistant-title-area p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.assistant-wizard {
  margin-top: 1.5rem;
  border-top: 1px dashed rgba(43, 124, 255, 0.15);
  padding-top: 1.5rem;
  animation: slideDown 0.25s ease-out;
}

.wizard-progress-container {
  height: 6px;
  background: #f1f5f9;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.wizard-progress-bar {
  height: 100%;
  background: var(--brand);
  border-radius: 99px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.wizard-question-content {
  margin-bottom: 2rem;
}

.wizard-question-content h4 {
  font-family: 'Alata', sans-serif;
  font-size: 1.15rem;
  color: var(--fg);
  margin: 0 0 1rem 0;
}

.wizard-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .wizard-options {
    grid-template-columns: 1fr 1fr;
  }
}

.wizard-option-card {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  padding: 1rem 1.25rem;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: inherit;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
  color: var(--fg);
}

.wizard-option-card:hover {
  border-color: var(--brand-2);
  background: rgba(43, 124, 255, 0.02);
  transform: translateY(-1px);
}

.wizard-option-card.selected {
  border-color: var(--brand);
  background: rgba(43, 124, 255, 0.05);
  border-width: 2px;
  padding: calc(1rem - 1px) calc(1.25rem - 1px);
  font-weight: 600;
}

.wizard-option-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.wizard-option-text {
  display: flex;
  flex-direction: column;
}

.wizard-option-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.wizard-option-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
  font-weight: 400;
}

.wizard-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

/* Mehrfachauswahl Grid */
.wizard-options-checkbox {
  grid-template-columns: 1fr;
}

.wizard-option-card input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--brand);
  flex-shrink: 0;
}

/* Mobil-Responsive Anpassung */
@media (max-width: 767px) {
  .planning-assistant-card {
    padding: 1rem;
    border-radius: 10px;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  
  .assistant-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .assistant-header .btn {
    width: 100%;
    text-align: center;
  }
  
  .wizard-option-card {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  .wizard-options {
    grid-template-columns: 1fr;
  }
}

/* Kompakte Kacheldarstellung für Listen ohne Beschreibungen */
.wizard-options-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

@media (min-width: 480px) {
  .wizard-options-compact {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wizard-options-compact .wizard-option-card {
  padding: 0.6rem 0.8rem;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.wizard-options-compact .wizard-option-card .wizard-option-text {
  align-items: center;
}

.wizard-options-compact .wizard-option-card .wizard-option-icon {
  margin-right: 0;
}
