/* Custom styles on top of Bootstrap */
.calendar-table th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
}

.day-cell {
    vertical-align: top;
    min-height: 110px;
    position: relative;
}

.booking-away        { background-color: #d1fae5 !important; border-left: 5px solid #10b981; }
.booking-non_exclusive { background-color: #fef3c7 !important; border-left: 5px solid #eab308; }
.booking-exclusive   { background-color: #fee2e2 !important; border-left: 5px solid #ef4444; }

.dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    font-size: 11px;
    margin: 2px;
}

.booking-actions button {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
}

/* Mobile improvements */
@media (max-width: 992px) {
    .day-cell {
        min-height: 90px;
        font-size: 0.95rem;
    }
}

.booking-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    margin: 2px;
    transition: transform 0.15s ease;
}

.booking-icon:hover {
    transform: scale(1.15);
}

/* Booking Types */
.booking-icon.away {
    background-color: #198754;   /* green */
}

.booking-icon.non_exclusive {
    background-color: #ffc107;   /* yellow */
    color: #212529;
}

.booking-icon.exclusive {
    background-color: #dc3545;   /* red */
}