#lb-booking-wizard { max-width:720px; margin:40px auto; font-family:'Arial',sans-serif; background:#fff; padding:25px; border-radius:12px; box-shadow:0 4px 20px rgba(0,0,0,0.05); }

.lb-progress-bar { display:flex; gap:12px; margin-bottom:20px; }
.lb-progress-bar .lb-step { flex:1; text-align:center; padding:10px; border-bottom:3px solid #eee; color:#777; border-radius:6px; transition:all .3s; }
.lb-progress-bar .lb-step.active { border-color:#4caf50; color:#4caf50; font-weight:600; background:#f0fff0; }

.lb-location-card { border:1px solid #ddd; padding:16px; margin:10px 0; cursor:pointer; border-radius:12px; display:flex; align-items:center; gap:12px; background:#fafafa; transition:all .3s; }
.lb-location-card:hover { box-shadow:0 2px 10px rgba(0,0,0,0.08); }
.lb-location-card.active { border:2px solid #4caf50; background:#e9f9e9; }

.lb-next, .lb-prev, .lb-submit { background:#4caf50; color:#fff; padding:10px 18px; border:none; border-radius:6px; cursor:pointer; margin:10px 6px 0 0; transition:all .3s; }
.lb-prev { background:#e6e6e6; color:#333; }
.lb-next:hover, .lb-submit:hover { background:#45a049; }

.lb-form-row { margin:12px 0; display:flex; flex-direction:column; }
.lb-form-row label { margin-bottom:6px; font-weight:600; color:#333; }
.lb-form-row input, .lb-form-row textarea { padding:10px; border:1px solid #ccc; border-radius:6px; width:100%; box-sizing:border-box; transition:all .3s; }
.lb-form-row input:focus, .lb-form-row textarea:focus { border-color:#4caf50; outline:none; }

.lb-month-nav { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.lb-month-nav button { background:#4caf50; color:#fff; border:none; padding:6px 12px; border-radius:6px; cursor:pointer; transition:all .2s; }
.lb-month-nav button:hover { background:#45a049; }

.lb-weekdays { display:grid; grid-template-columns:repeat(7,1fr); text-align:center; font-weight:600; color:#555; margin-bottom:6px; }
.lb-weekdays div { padding:6px 0; }

.lb-dates { display:grid; grid-template-columns:repeat(7,1fr); gap:6px; }
.lb-dates div { padding:12px; text-align:center; border:1px solid #eee; border-radius:8px; cursor:pointer; background:#fff; color:#333; transition:all .2s; }
.lb-dates div.disabled { background:#f5f5f5; color:#aaa; cursor:not-allowed; }
.lb-dates div.empty { border:none; background:transparent; cursor:default; }
.lb-dates div.active { background:#4caf50; color:#fff; border-color:#4caf50; box-shadow:0 2px 8px rgba(76,175,80,0.3); }
.lb-dates div:not(.disabled,.empty):hover { background:#d4f7d4; }

#lb-timeslots { margin-top:14px; display:flex; flex-wrap:wrap; gap:10px; }
.lb-slot { padding:10px 14px; border:1px solid #ddd; border-radius:8px; cursor:pointer; transition:all .2s; background:#fff; }
.lb-slot.active { background:#4caf50; color:#fff; border-color:#4caf50; box-shadow:0 2px 8px rgba(76,175,80,0.3); }
.lb-slot:not(.disabled):hover { background:#d4f7d4; }
.lb-slot.disabled { background:#f5f5f5; color:#aaa; cursor:not-allowed; }

.required-star {
    color: red;
    margin-left: 3px;
    font-weight: bold;
}
