/**
 * ══════════════════════════════════════════════════════════════════════════════
 * GÖKÇEOS PROTOTYPE UI V2 — RESORT OPERATIONS V2 CSS
 * Housekeeping, Transfer & Valet, Purchasing & Stock, Banquet & Night Audit
 * ══════════════════════════════════════════════════════════════════════════════
 */

.hk-room-chip {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: all 0.15s;
}

.hk-room-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.hk-room-chip.status-dirty {
  border-left: 4px solid #ef4444;
}

.hk-room-chip.status-cleaning {
  border-left: 4px solid #f59e0b;
}

.hk-room-chip.status-inspected {
  border-left: 4px solid #10b981;
}

.hk-room-chip.status-dnd {
  border-left: 4px solid #a855f7;
}

.audit-step-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
