.bronny-calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bronny-week {
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.bronny-day-name {
    font-weight: bold;
    text-align: center;
    padding: 8px;
}

.bronny-day {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ccc;
    font-weight: 500;
}

.bronny-day.free {
    background-color: #ccffcc;
}

.bronny-day.pending {
    background-color: #fff3cd;
}

.bronny-day.booked {
    background-color: #f8d7da;
}

.bronny-day.empty {
    visibility: hidden;
    pointer-events: none;
}

.bronny-legend {
    margin-top: 12px;
    font-size: 14px;
}

.bronny-legend .legend-box {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    border: 1px solid #999;
    vertical-align: middle;
}

.bronny-room-description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    max-width: 100%;
}
