/* 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;
    }
}

/* Ensure dots are visible */
.booking-dots {
    margin-top: 4px;
}

.dot {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    font-size: 13px;
    margin: 2px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.dot:hover {
    transform: scale(1.15);
}
/* Booking Types */
.dot.away {
    background-color: #198754;   /* green */
}

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

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