/* 🏨 Rooms Left Badge Container */
.rooms-left-container {
    text-align: right;
    flex-shrink: 0;
    position: relative;
}

/* ✅ Default "Rooms Left" Badge */
/* ✅ Default "Rooms Left" Badge */
.rooms-left-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-tertiary); /* Use theme white */
    background: var(--gradient-primary);
    border-radius: var(--border-radius-primary);
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Neutral shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ✅ Badge Icon */
.rooms-left-badge i {
    font-size: 0.85rem;
    color: inherit;
}

/* ✅ Hover Effect */
.rooms-left-badge:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.rooms-left-badge--last {
    background: linear-gradient(135deg, #FFD27F, #FF9E80); /* Keep nuanced alert color but soften shadow */
    color: #4a2c00; 
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    font-weight: 600;
}

/* Icon style */
.rooms-left-badge--last i {
    color: #E65100; 
    font-size: 0.9rem;
}

/* ⚠️ Sold Out Variant */
.rooms-left-badge--soldout {
    background: linear-gradient(135deg, #555, #222);
    color: #f1f1f1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.rooms-left-badge--soldout i {
    color: #FFD700; /* Gold for urgency */
    font-size: 0.85rem;
}

/* 🚫 No Rooms Available Box */
.no-rooms-message {
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    max-width: 600px;
}
.no-rooms-message h3 {
    color: #dc3545;
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.no-rooms-message p {
    font-size: 1rem;
    color: #6c757d;
}