/* Hotel Operations Tabs */
/* Hotel Overview, Scheduled Tab, Room Cleaning Allocation */

/* ===================================
   TEAM TIMELINE (SCHEDULED TAB)
   =================================== */

/* ===================================
   TIMELINE STYLES
   =================================== */

/* All timeline styles moved to timeline.css for unified DRY system */

/* ===================================
   ROOM CLEANING ALLOCATION
   =================================== */

.room-cleaning-allocation {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.unassigned-rooms-panel {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.panel-header {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    margin: 0;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
}

.cleaning-type-legend {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-text {
    color: var(--text-secondary);
    white-space: nowrap;
}

.rooms-grid {
    padding: var(--space-md);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-sm);
    max-height: 200px;
    overflow-y: auto;
}

.room-block {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-left: 4px solid var(--primary-500);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    cursor: grab;
    transition: all 0.2s ease;
    position: relative;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.room-block:hover {
    border-color: var(--primary-400);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.room-block:active {
    cursor: grabbing;
}

.room-block.urgent {
    border-color: var(--danger-400);
    background: linear-gradient(135deg, var(--bg-white) 0%, #ffeaea 100%);
}

.room-number {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
}

.room-type {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-gray-100);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    margin-top: 2px;
}

.room-duration {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-top: 2px;
}

.urgent-indicator {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--danger-500);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.vip-indicator {
    position: absolute;
    top: -2px;
    left: -2px;
    background: var(--warning-500);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

