/* ─── TURNOS — Frontend Styles ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --color:          #cb9cd9;
  --color-dk:       #b589c4;
  --color-light:    #eddff5;
  --color-soft:     #faf6fc;
  --color-white:    #ffffff;
  --color-text:     #2d1f3d;
  --color-muted:    #7a6b8a;
  --color-success:  #5cb85c;
  --color-danger:   #dc3545;
  --color-warning:  #f0ad4e;
  --radius:         14px;
  --shadow:         0 4px 24px rgba(149, 65, 149, 0.12);
  --shadow-hover:   0 8px 32px rgba(149, 65, 149, 0.22);
  --transition:     all 0.28s cubic-bezier(.4,0,.2,1);
}

/* ─── BASE ─── */
.liv-frontend * { box-sizing: border-box; font-family: 'Jost', sans-serif; }
.liv-frontend {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* ─── CALENDARIO WRAP ─── */
.liv-cal-wrap {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
}

.liv-cal-header {
  background: linear-gradient(135deg, #cb9cd9 0%, #b589c4 100%);
  padding: 36px 40px 28px;
  text-align: center;
  color: white;
}
.liv-cal-wrap.estetica .liv-cal-header { background: linear-gradient(135deg, #cb9cd9 0%, #c08acc 100%); }
.liv-cal-wrap.pilates  .liv-cal-header { background: linear-gradient(135deg, #b589c4 0%, #cb9cd9 100%); }

.liv-cal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  margin: 0 0 4px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
}
.liv-cal-subtitle { font-size: 0.9rem; opacity: 0.85; font-weight: 300; color: white; margin: 0; }

/* ─── BOOKING FLOW ─── */
.liv-booking-flow { padding: 28px 32px 36px; }

.liv-step { display: none; animation: livFadeIn 0.4s ease; }
.liv-step.active { display: block; }

@keyframes livFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.liv-step-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}
.liv-step-num {
  width: 32px; height: 32px;
  background: var(--color);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* ─── SERVICIOS GRID ─── */
.liv-servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.liv-srv-card {
  border: 2px solid var(--color-light);
  border-radius: var(--radius);
  padding: 18px 16px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--color-soft);
}
.liv-srv-card:hover {
  border-color: var(--color);
  background: white;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.liv-srv-card.selected {
  border-color: var(--color-dk);
  background: var(--color-light);
}
.liv-srv-name { font-weight: 600; color: var(--color-text); font-size: 0.95rem; margin-bottom: 6px; }
.liv-srv-meta { font-size: 0.8rem; color: var(--color); font-weight: 500; }
.liv-srv-desc { font-size: 0.78rem; color: var(--color-muted); margin-top: 6px; line-height: 1.4; }

/* ─── MINI CALENDARIO ─── */
.liv-mini-cal { width: 100%; max-width: 360px; }
.liv-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.liv-cal-nav button {
  background: none;
  border: 1.5px solid var(--color-light);
  border-radius: 8px;
  width: 36px; height: 36px;
  cursor: pointer;
  color: var(--color);
  font-size: 1rem;
  transition: var(--transition);
}
.liv-cal-nav button:hover { background: var(--color-light); }
.liv-cal-month-label { font-weight: 600; font-size: 1rem; color: var(--color-text); text-transform: capitalize; }
.liv-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.liv-cal-day-header { text-align: center; font-size: 0.72rem; color: var(--color-muted); font-weight: 600; padding: 4px 0; text-transform: uppercase; }
.liv-cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-text);
}
.liv-cal-day:hover:not(.disabled):not(.past) { background: var(--color-light); }
.liv-cal-day.disponible { color: var(--color); font-weight: 600; }
.liv-cal-day.selected { background: var(--color); color: white !important; }
.liv-cal-day.today { border: 2px solid var(--color); }
.liv-cal-day.disabled, .liv-cal-day.past { color: #ccc; cursor: default; }
.liv-cal-day.empty { cursor: default; }

/* ─── HORARIOS ─── */
.liv-horarios-list { display: flex; flex-wrap: wrap; gap: 10px; }
.liv-horario-btn {
  padding: 12px 20px;
  border: 2px solid var(--color-light);
  border-radius: 10px;
  background: var(--color-soft);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.liv-horario-btn:hover { border-color: var(--color); background: white; }
.liv-horario-btn.selected { border-color: var(--color-dk); background: var(--color-light); }
.liv-horario-btn .places { font-size: 0.7rem; color: var(--color-muted); }

/* ─── FORM FRONT ─── */
.liv-form-front { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 480px; }
.liv-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 5px; }
.liv-field input, .liv-field textarea, .liv-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-light);
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-soft);
  transition: var(--transition);
}
.liv-field input:focus, .liv-field textarea:focus, .liv-field select:focus {
  outline: none;
  border-color: var(--color);
  background: white;
  box-shadow: 0 0 0 3px rgba(203,156,217,0.15);
}
.liv-dni-result { font-size: 0.85rem; color: var(--color); margin-top: 6px; min-height: 20px; }

/* ─── RESUMEN ─── */
.liv-resumen {
  background: var(--color-soft);
  border: 1.5px solid var(--color-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}
.liv-resumen-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--color-light); font-size: 0.92rem; }
.liv-resumen-row:last-child { border: none; }
.liv-resumen-row span:first-child { color: var(--color-muted); }
.liv-resumen-row span:last-child { font-weight: 600; color: var(--color-text); }

/* ─── BOTONES PRINCIPALES ─── */
.liv-btn-book {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #cb9cd9 0%, #b589c4 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
}
.liv-btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(203,156,217,0.35); }
.liv-btn-back {
  background: none;
  border: 1.5px solid var(--color-light);
  color: var(--color-muted);
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  margin-top: 12px;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
}
.liv-btn-back:hover { border-color: var(--color); color: var(--color); }

/* ─── RESULTADO ─── */
.liv-resultado {
  text-align: center;
  padding: 40px;
  animation: livFadeIn 0.4s ease;
}
.liv-resultado.ok .liv-resultado-icon { font-size: 4rem; color: var(--color-success); margin-bottom: 16px; }
.liv-resultado.error .liv-resultado-icon { font-size: 4rem; color: var(--color-danger); margin-bottom: 16px; }
.liv-resultado h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 10px; color: var(--color-text); }

/* ─── PERFIL CLIENTE ─── */
.liv-perfil { padding: 20px 0; width: 100%; }
.liv-perfil-header {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #cb9cd9 0%, #b589c4 100%);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
  color: white;
}
.liv-perfil-avatar {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: white;
  flex-shrink: 0;
}
.liv-perfil-nombre { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; margin: 0; color: white; }
.liv-perfil-dni { font-size: 0.85rem; opacity: 0.8; margin: 4px 0 0; color: white; }

/* ─── DEUDA ALERT ─── */
.liv-deuda-alert {
  background: #fee;
  border: 2px solid var(--color-danger);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: livPulse 2s infinite;
}
@keyframes livPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(220,53,69,0.3); } 50% { box-shadow: 0 0 0 8px rgba(220,53,69,0); } }
.liv-deuda-icon { font-size: 2rem; color: var(--color-danger); }
.liv-deuda-alert strong { display: block; font-size: 1rem; color: var(--color-danger); margin-bottom: 4px; }
.liv-deuda-alert p { margin: 0; font-size: 0.88rem; color: #8b0000; }

/* ─── TABS ─── */
.liv-perfil-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.liv-tab {
  padding: 10px 18px;
  border: 1.5px solid var(--color-light);
  border-radius: 30px;
  background: var(--color-soft);
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
}
.liv-tab:hover { border-color: var(--color); color: var(--color); }
.liv-tab.active { background: var(--color); border-color: var(--color); color: white; }
.liv-tab-content { display: none; animation: livFadeIn 0.3s ease; }
.liv-tab-content.active { display: block; }

/* ─── TURNO CARDS ─── */
.liv-turnos-list { display: flex; flex-direction: column; gap: 12px; }
.liv-turno-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  border-left: 4px solid var(--color-light);
  transition: var(--transition);
}
.liv-turno-card.pilates  { border-left-color: var(--color-dk); }
.liv-turno-card.estetica { border-left-color: var(--color); }
.liv-turno-date {
  text-align: center;
  min-width: 44px;
  flex-shrink: 0;
}
.liv-turno-day { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; line-height: 1; color: var(--color); }
.liv-turno-month { display: block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted); }
.liv-turno-info { flex: 1; }
.liv-turno-info strong { display: block; font-size: 0.95rem; color: var(--color-text); margin-bottom: 3px; }
.liv-turno-info span { display: block; font-size: 0.82rem; color: var(--color-muted); }
.liv-turno-estado-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }

/* ─── ESTADOS ─── */
.liv-estado {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}
.liv-estado.reservado    { background: #e8f4fd; color: #1a73e8; }
.liv-estado.confirmado   { background: #e6f4ea; color: #137333; }
.liv-estado.asistio      { background: #e6f4ea; color: #137333; }
.liv-estado.ausente      { background: #fce8e6; color: #c5221f; }
.liv-estado.cancelado    { background: #f1f3f4; color: #80868b; }
.liv-estado.cambio_solicitado { background: #fef7e0; color: #b45309; }
.liv-estado.pendiente    { background: #fef7e0; color: #b45309; }
.liv-estado.pagado       { background: #e6f4ea; color: #137333; }

/* ─── PAQUETES FRONT ─── */
.liv-paquete-front {
  background: var(--color-soft);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
}
.liv-paquete-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.liv-paquete-top strong { font-size: 1rem; color: var(--color-text); }
.liv-paquete-restantes { font-size: 0.85rem; color: var(--color); font-weight: 600; }
.liv-progress-bar-front {
  height: 8px;
  background: var(--color-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.liv-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #cb9cd9 0%, #b589c4 100%);
  border-radius: 4px;
  transition: width 0.8s ease;
}
.liv-paquete-meta { font-size: 0.78rem; color: var(--color-muted); }

/* ─── PAGOS LIST ─── */
.liv-pagos-list { display: flex; flex-direction: column; gap: 10px; }
.liv-pago-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--color-soft);
  border-radius: 10px;
  border-left: 3px solid var(--color-light);
  flex-wrap: wrap;
  gap: 8px;
}
.liv-pago-row.pendiente { border-left-color: var(--color-warning); }
.liv-pago-row.pagado    { border-left-color: var(--color-success); }
.liv-pago-row strong { display: block; font-size: 0.92rem; color: var(--color-text); }
.liv-pago-fecha { font-size: 0.78rem; color: var(--color-muted); }
.liv-pago-right { display: flex; align-items: center; gap: 10px; }
.liv-pago-monto { font-weight: 700; font-size: 1rem; color: var(--color-text); }

/* ─── PROGRESO ─── */
.liv-progreso-cards { display: flex; flex-direction: column; gap: 12px; }
.liv-progreso-entry {
  background: var(--color-soft);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.liv-progreso-fecha { font-weight: 600; font-size: 0.85rem; color: var(--color); margin-bottom: 8px; text-transform: capitalize; }
.liv-progreso-datos { display: flex; gap: 20px; flex-wrap: wrap; }
.liv-progreso-datos div { font-size: 0.9rem; color: var(--color-text); }
.liv-progreso-datos .label { color: var(--color-muted); font-size: 0.78rem; display: block; }
.liv-progreso-nota { font-size: 0.82rem; color: var(--color-muted); margin-top: 8px; font-style: italic; }

/* ─── TABLA FRONT ─── */
.liv-table-front { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.liv-table-front th { text-align: left; padding: 10px 12px; color: var(--color-muted); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid var(--color-light); }
.liv-table-front td { padding: 12px; border-bottom: 1px solid var(--color-light); color: var(--color-text); }

/* ─── BOTONES MENORES ─── */
.liv-btn-cambio {
  padding: 6px 14px;
  background: white;
  border: 1.5px solid var(--color);
  color: var(--color);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
}
.liv-btn-cambio:hover { background: var(--color); color: white; }
.liv-msg-sm { font-size: 0.75rem; }
.liv-msg-sm.warning { color: var(--color-warning); }
.liv-msg-sm.muted { color: var(--color-muted); }

/* ─── BADGES ─── */
.liv-badge-sm {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(203,156,217,0.15);
  color: var(--color-dk);
}
.liv-badge-sm.pilates  { background: rgba(181,137,196,0.15); color: var(--color-dk); }
.liv-badge-sm.estetica { background: rgba(203,156,217,0.15); color: var(--color); }

/* ─── MENSAJES ─── */
.liv-msg { padding: 12px 18px; border-radius: 10px; font-size: 0.9rem; margin-bottom: 16px; }
.liv-msg.ok { background: #e6f4ea; color: #137333; }
.liv-msg.error { background: #fce8e6; color: #c5221f; }

.liv-empty { color: var(--color-muted); font-size: 0.9rem; text-align: center; padding: 24px; }

/* ─── CONFIRMAR ASISTENCIA ─── */
.liv-asistencia-wrap {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.liv-asistencia-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 48px 48px 40px;
  text-align: center;
  width: 100%;
  max-width: 480px;
}
.liv-asistencia-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--color-text);
  margin: 0 0 8px;
}
.liv-asistencia-sub { color: var(--color-muted); font-size: 0.9rem; margin-bottom: 32px; }
.liv-asistencia-form { margin-bottom: 24px; }
.liv-dni-input-wrap { display: flex; gap: 10px; }
.liv-dni-big {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--color-light);
  border-radius: 12px;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: 'Jost', sans-serif;
  color: var(--color-text);
  background: var(--color-soft);
  transition: var(--transition);
}
.liv-dni-big:focus {
  outline: none;
  border-color: var(--color);
  background: white;
  box-shadow: 0 0 0 4px rgba(203,156,217,0.15);
}
.liv-btn-dni {
  padding: 16px 24px;
  background: linear-gradient(135deg, #cb9cd9, #b589c4);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
  white-space: nowrap;
}
.liv-btn-dni:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(203,156,217,0.35); }

/* ─── RESULTADO ASISTENCIA ─── */
.liv-asistencia-resultado {
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  animation: livFadeIn 0.4s ease;
}
.liv-asistencia-resultado.ok   { background: #e6f4ea; border: 2px solid #34a853; }
.liv-asistencia-resultado.deuda { background: #fce8e6; border: 2px solid var(--color-danger); animation: livPulse 1.5s infinite; }
.liv-asistencia-resultado.error { background: #f1f3f4; border: 2px solid #bdc1c6; }
.liv-resultado-icon { font-size: 3rem; margin-bottom: 12px; }
.liv-resultado-icon.deuda { color: var(--color-danger); }
.liv-resultado-icon.error { color: #80868b; }
.liv-asistencia-resultado h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--color-text);
}
.liv-asistencia-resultado.ok h3    { color: #137333; }
.liv-asistencia-resultado.deuda h3 { color: var(--color-danger); }
.liv-asistencia-resultado p { font-size: 0.92rem; color: var(--color-text); margin: 0 0 12px; }
.liv-deuda-instruction {
  background: rgba(220,53,69,0.1);
  color: var(--color-danger);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ─── PERFIL LOGIN ─── */
.liv-perfil-login { text-align: center; padding: 40px; color: var(--color-muted); }
.liv-perfil-login a { color: var(--color); }

/* ─── HIDDEN ─── */
.hidden { display: none !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .liv-booking-flow { padding: 20px 16px 24px; }
  .liv-cal-header { padding: 24px 20px; }
  .liv-servicios-grid { grid-template-columns: 1fr 1fr; }
  .liv-turno-card { flex-wrap: wrap; }
  .liv-turno-estado-wrap { align-items: flex-start; width: 100%; }
  .liv-perfil-header { padding: 20px; flex-wrap: wrap; }
  .liv-perfil-tabs { gap: 4px; }
  .liv-tab { padding: 8px 12px; font-size: 0.78rem; }
  .liv-table-front { font-size: 0.8rem; }
  .liv-table-front th, .liv-table-front td { padding: 8px 6px; }
}

@media (max-width: 480px) {
  .liv-servicios-grid { grid-template-columns: 1fr; }
  .liv-cal-title { font-size: 1.6rem; }
  .liv-asistencia-card { padding: 28px 20px; }
  .liv-dni-input-wrap { flex-direction: column; }
  .liv-btn-dni { width: 100%; }
  .liv-horarios-list { gap: 8px; }
  .liv-horario-btn { padding: 10px 14px; font-size: 0.85rem; }
  .liv-mini-cal { max-width: 100%; }
  .liv-perfil-nombre { font-size: 1.4rem; }
}

/* ─── BOTÓN SIGUIENTE (paso 4) ─── */
.liv-btn-siguiente {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #cb9cd9 0%, #b589c4 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
  margin-top: 8px;
}
.liv-btn-siguiente:disabled {
  background: #e0d4ea;
  color: #b0a0c0;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.liv-btn-siguiente:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(203,156,217,0.35);
}

/* ─── DNI feedback ─── */
.liv-dni-ok   { color: #137333; font-size: .85rem; font-weight: 600; }
.liv-dni-nuevo { color: #b45309; font-size: .82rem; }
.liv-hint-registro {
  font-size: .82rem;
  color: var(--color-muted);
  background: var(--color-soft);
  border-left: 3px solid var(--color);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  margin: 4px 0 12px;
}
