/* Custom Room Status Styles for Yallo Residency */

.room-item {
    position: relative;
}

.room-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.room-status.available {
    background-color: #28a745;
    color: white;
}

.room-status.booked {
    background-color: #dc3545;
    color: white;
}

.room-item.booked-room {
    filter: grayscale(100%);
    opacity: 0.7;
    pointer-events: none;
}

.room-item.booked-room a {
    cursor: not-allowed;
}

.room-item.booked-room .book-btn {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    cursor: not-allowed;
    pointer-events: none;
}