.calendar-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.calendar-container {
    background: #fffafc;
    border: 1px solid #f0d3df;
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.calendar-header {
    text-align: center;
    font-weight: 700;
    color: var(--rose-dark);
    margin-bottom: 14px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-name,
.calendar-day {
    text-align: center;
    padding: 10px 0;
    border-radius: 12px;
    font-size: 0.95rem;
}

.calendar-day-name {
    font-weight: 700;
    color: var(--rose-dark);
}

.calendar-day.empty {
    background: transparent;
}

.calendar-day.available {
    background: #ffeaf3;
    cursor: pointer;
}

.calendar-day.available:hover {
    background: #f8d0e2;
}

.calendar-day.unavailable {
    background: #ededed;
    color: #9d9d9d;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--rose-dark);
    color: #fff;
}

.timeslot-section {
    margin-top: 24px;
}