/* 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-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--space-4);
}

.panel-header {
    padding: var(--space-4);
    border-bottom: 1px solid var(--border-subtle);
    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-3);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
}

.legend-color {
    width: var(--space-3);
    height: var(--space-3);
    border-radius: var(--border-radius-sm);
}

.legend-text {
    color: var(--text-secondary);
    white-space: nowrap;
}

.rooms-grid {
    padding: var(--space-4);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-3);
    max-height: var(--space-50);
    overflow-y: auto;
}

.room-block {
    background: var(--bg-surface);
    border: var(--border-width-2) solid var(--border-subtle);
    border-left: var(--border-width-4) solid var(--primary-500);
    border-radius: var(--border-radius-sm);
    padding: var(--space-3);
    cursor: grab;
    transition: all var(--duration-200) var(--easing-out);
    position: relative;
    min-height: var(--space-15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.room-block:hover {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.room-block:active {
    cursor: grabbing;
}

.room-block.urgent {
    border-color: var(--danger-400);
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--color-error-light) 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: var(--space-0_5) var(--space-1_5);
    border-radius: var(--border-radius-sm);
    margin-top: var(--space-0_5);
}

.room-duration {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-top: var(--space-0_5);
}

.urgent-indicator {
    position: absolute;
    top: calc(-1 * var(--space-0_5));
    right: calc(-1 * var(--space-0_5));
    background: var(--danger-500);
    color: var(--text-inverse);
    border-radius: var(--border-radius-full);
    width: var(--space-4);
    height: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xs);
    font-weight: bold;
}

.vip-indicator {
    position: absolute;
    top: calc(-1 * var(--space-0_5));
    left: calc(-1 * var(--space-0_5));
    background: var(--warning-500);
    color: var(--text-inverse);
    border-radius: var(--border-radius-full);
    width: var(--space-4);
    height: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xs);
}

