/* RESERVEREN */

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
    gap: 24px;
}

.booking-panel {
    background: var(--bg-panel);
    border-radius: 18px;
    padding: 16px 16px 18px;
    border: 1px solid rgba(212,175,55,0.25);
}

.booking-panel h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

/* KALENDER TITEL + NAV */
#calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

#calendar-nav button {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold-soft);
    border-radius: 999px;
    padding: 4px 10px;
    cursor: pointer;
}

#calendar-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-soft);
}

/* GRID */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    font-size: 0.78rem;
    margin-top: 4px;
}

/* DAGNAMEN */
.calendar-header {
    text-align: center;
    font-weight: bold;
    background: #222;
    color: white;
    padding: 6px 0;
    border-radius: 6px;
}

/* DAG-CELLEN */
.calendar-cell {
    text-align: center;
    padding: 8px 0;
    border-radius: 999px;
    color: #ddd;
    transition: 0.15s ease;
}

/* Beschikbare dagen → gouden cirkel */
.calendar-cell.clickable {
    cursor: pointer;
    border: 3px solid #d4af37;
    background: transparent;
}

.calendar-cell.clickable:hover {
    background: rgba(212,175,55,0.25);
}

/* Geselecteerde dag */
.calendar-cell.selected {
    background: #d4af37 !important;
    color: #1a1308 !important;
    font-weight: 600;
    border-color: transparent !important;
    box-shadow: 0 0 10px rgba(212,175,55,0.6);
}

/* Niet-beschikbaar of verleden */
.calendar-cell.disabled {
    background: #000;
    opacity: 0.35;
    cursor: not-allowed;
    border: none;
}

/* Lege cellen (offset) */
.empty {
    background: transparent !important;
    border: none !important;
}

/* TIJD-SLOTS */
.slots-list {
    margin-top: 10px;
    display: grid;
    gap: 8px;
    font-size: 0.9rem;
}

.slot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    background: #181621;
}

.slot-label {
    display: flex;
    flex-direction: column;
}

.slot-label span:first-child {
    font-weight: 500;
}

.slot-label span:last-child {
    font-size: 0.8rem;
    color: #bfbfbf;
}

.slot-times {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.slot-time {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.5);
    font-size: 0.8rem;
    cursor: pointer;
    background: transparent;
    color: #f7f7f7;
}

.slot-time--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #1a1308;
    border-color: transparent;
    font-weight: 600;
}

.booking-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.btn-next {
    padding: 9px 20px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #1a1308;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}
