.fersk-booking {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    background: #fff;
}

.fersk-booking__calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.fersk-booking__day {
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
}

.fersk-booking__day.is-weekend {
    background: #f3f6ff;
}

.fersk-booking__day.is-selected {
    border-color: #0a63ff;
    background: #e7efff;
}

.fersk-booking__day.is-booked {
    background: #fbd5d5;
    color: #8c2a2a;
    cursor: not-allowed;
}

.fersk-booking__day.is-weekday-locked {
    background: #f0f0f0;
    color: #555;
    cursor: not-allowed;
}

.fersk-booking__day.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.fersk-booking__day.is-other-month {
    opacity: 0.4;
    color: #999;
}

.fersk-booking__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.fersk-booking__select {
    margin-bottom: 12px;
}

.fersk-booking__info {
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
}

