/* ===== Lau Booking Wizard – neutral / theme-friendly ===== */
.lau-booking{
  max-width: 980px;
  margin: 0;
  font-family: inherit;
  color: inherit;
}
/* ===== Calendar date picker ===== */
.lau-cal{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,.96);
}
.lau-success{
  text-align:center;
  padding:40px 20px;
}

.lau-success h3{
  font-size:22px;
  margin-bottom:12px;
}

.lau-cal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.lau-cal__title{
  font-weight: 700;
  text-transform: capitalize;
}

.lau-cal__nav{
  border: 1px solid rgba(0,0,0,.12);
  background: transparent;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.lau-cal__nav:disabled{
  opacity: .35;
  cursor: default;
}

.lau-cal__weekdays{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  opacity: .65;
}
.lau-cal__weekdays > div{
  text-align:center;
  padding: 6px 0;
}

.lau-cal__grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.lau-cal__day{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  border-radius: 12px;
  height: 42px;
  cursor: pointer;
  font-weight: 700;
}
.lau-cal__day.is-out{
  border: 0;
  background: transparent;
}
.lau-cal__day.is-disabled{
  opacity: .30;
  cursor: default;
}
.lau-cal__day.is-available:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,.22);
}
.lau-cal__day.is-active{
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

/* ===== Cancel page styling ===== */
.lau-cancel{
  max-width: 720px;
  margin: 40px auto;
  padding: 0 14px;
  font-family: inherit;
  color: inherit;
}

.lau-cancel__box{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255,255,255,.96);
}

.lau-cancel__box h3{
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 700;
}

.lau-cancel__box p{
  margin: 0 0 16px 0;
  opacity: .75;
}

.lau-cancel__form{
  margin: 14px 0 10px 0;
}

.lau-cancel__hint{
  margin-top: 12px;
  font-size: 13px;
  opacity: .6;
}

/* Container: rolig, ingen “app-glass” */
.lau-wizard{
  --stroke: rgba(0,0,0,.12);
  --stroke-strong: rgba(0,0,0,.22);
  --bg: transparent;
  --card: rgba(255,255,255,.96);
  --muted: rgba(0,0,0,.60);

  background: var(--bg);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: none;
}

/* Hvis du vil undgå dobbelt “Book din tid”-titel, slå den fra her */
.lau-wizard__title{ 
  /* display:none; */ 
  margin: 0;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.lau-wizard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}

/* Hjælpetekst skal føles som brødtekst på siden */
.lau-wizard__note{
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

/* Step chips: mere klassisk, mindre “pill app” */
.lau-wizard__steps{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
}

.lau-stepchip{
  border: 1px solid var(--stroke);
  background: transparent;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  user-select: none;
}

.lau-stepchip.active{
  border-color: var(--stroke-strong);
  color: rgba(0,0,0,.86);
}

/* Step wrapper */
.lau-step{
  display:none;
  margin-top: 16px;
}

.lau-step--active{ display:block; }

.lau-step__headline{
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lau-step__sub{
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

/* Empty state: rolig */
.lau-empty{
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px dashed var(--stroke-strong);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.75);
}

/* Dates grid: mere luft, mindre “card-heavy” */
.lau-dates{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 980px){
  .lau-dates{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .lau-dates{ grid-template-columns: 1fr; }
}

.lau-date{
  width: 100%;
  text-align:left;
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: 16px;
  padding: 12px 12px;
  cursor: pointer;
  box-shadow: none;
  transition: border-color .15s ease, transform .15s ease;
}

.lau-date:hover{
  transform: translateY(-1px);
  border-color: var(--stroke-strong);
}

.lau-date.active{
  border-color: rgba(0,0,0,.32);
}

.lau-date.hint{
  border-color: rgba(0,0,0,.20);
}

.lau-date__day{
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
}

.lau-date__meta{
  margin-top: 8px;
  display:inline-block;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 6px 10px;
  background: transparent;
}

/* Slots: mindre “app”, mere klassisk knap */
.lau-slots{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.lau-slot{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  padding: 10px 14px;
  cursor:pointer;
  font-family: inherit;
  font-weight: 700;
  transition: border-color .15s ease, transform .15s ease;
}

.lau-slot:hover{
  transform: translateY(-1px);
  border-color: var(--stroke-strong);
}

.lau-slot.active{
  border-color: rgba(0,0,0,.32);
}

/* Form: mere “site” end “app” */
.lau-form{
  display:grid;
  gap: 12px;
  max-width: 760px;
}

.lau-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 740px){
  .lau-grid{ grid-template-columns: 1fr; }
}

.lau-form input,
.lau-form textarea{
  font-family: inherit;
  font-size: 15px;
  padding: 11px 12px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  width: 100%;
  background: rgba(255,255,255,.96);
  box-shadow: none;
}

.lau-form input:focus,
.lau-form textarea:focus{
  outline: none;
  border-color: rgba(0,0,0,.28);
}

.lau-form textarea{
  min-height: 120px;
  resize: vertical;
}

/* Nav buttons: “site buttons”, ikke store app-buttons */
.lau-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  margin-top: 4px;
}

.lau-btn{
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  transition: transform .15s ease, border-color .15s ease;
}

.lau-btn:hover{
  transform: translateY(-1px);
  border-color: var(--stroke-strong);
}

.lau-btn--ghost{
  background: transparent;
}

.lau-btn--primary{
  background: rgba(0,0,0,.92);
  border-color: rgba(0,0,0,.92);
  color: #fff;
}

/* Messages */
.lau-msg{
  margin-top: 6px;
  font-family: inherit;
  font-weight: 600;
}
.lau-msg.err{ color:#b00020; }
.lau-msg.ok { color:#0a7a2a; }
