/* ═══════════════════════════════════════════════════════════════
   BUSSER ROLE - Mobile Responsive (Enhanced)
   ═══════════════════════════════════════════════════════════════ */

.busser-interface {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #1a2e1a 0%, #0f1a0f 100%);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   TOP BAR & INVENTORY
   ═══════════════════════════════════════════════════════════════ */

.busser-top-bar {
  background: var(--color-bg-card);
  border-bottom: 3px solid var(--color-secondary);
  flex-shrink: 0;
}

.location-bar {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.current-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.location-icon {
  font-size: 1.5rem;
}

.location-name {
  font-size: 0.875rem;
  color: var(--color-text);
}

.walking-indicator {
  font-size: 0.75rem;
  color: var(--color-accent-yellow);
  animation: pulse 1s infinite;
}

.map-btn {
  padding: 8px 14px;
  background: var(--color-secondary);
  border: none;
  border-radius: var(--radius-full);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
}

/* Inventory Bar */
.inventory-bar {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.2);
}

.inventory-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg-dark);
  padding: 8px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all 0.2s;
}

.inventory-item.low {
  border-color: var(--color-accent-yellow);
  background: rgba(255, 193, 7, 0.1);
}

.inventory-item.critical {
  border-color: #FF4444;
  background: rgba(255, 68, 68, 0.2);
  animation: pulse-red 1s infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 68, 68, 0.5); }
  50% { box-shadow: 0 0 15px rgba(255, 68, 68, 0.8); }
}

.inv-icon {
  font-size: 1.25rem;
}

.inv-count {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.inv-label {
  font-size: 0.625rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* Trash Status Bar */
.trash-status-bar,
.trash-alert-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.3);
}

.trash-alert-bar {
  background: rgba(255, 68, 68, 0.3);
  border-top: 2px solid #FF4444;
}

.trash-icon {
  font-size: 1.25rem;
}

.trash-text {
  font-size: 0.75rem;
  color: var(--color-text);
  flex: 1;
}

.trash-progress {
  width: 80px;
  height: 8px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.trash-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-green), var(--color-secondary));
  transition: width 0.3s;
}

.go-trash-btn {
  padding: 6px 12px;
  background: #FF4444;
  border: none;
  border-radius: var(--radius-full);
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  animation: pulse 1s infinite;
}

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════ */

.busser-content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   DISH STATION
   ═══════════════════════════════════════════════════════════════ */

.dish-station {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bus-bin-area,
.clean-rack-area {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: 12px;
}

.dish-station h3 {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.bus-bin {
  min-height: 80px;
  background: var(--color-bg-dark);
  border: 3px dashed var(--color-text-muted);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  align-content: flex-start;
}

.bus-bin.drag-over {
  border-color: var(--color-secondary);
  background: rgba(78, 205, 196, 0.1);
}

.empty-bin,
.empty-rack {
  width: 100%;
  text-align: center;
  color: var(--color-text-muted);
  padding: 16px;
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════════
   BAR DELIVERIES SECTION
   ═══════════════════════════════════════════════════════════════ */

.bar-deliveries-section {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.2) 0%, rgba(45, 27, 78, 0.95) 100%);
  border: 2px solid #9b59b6;
  border-radius: var(--radius-xl);
  padding: 12px;
  margin-bottom: 8px;
}

.bar-deliveries-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.bar-deliveries-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #e0b0ff;
}

.bar-deliveries-count {
  background: #9b59b6;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.bar-deliveries-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-delivery-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 10px 12px;
  gap: 10px;
}

.bar-delivery-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.bar-delivery-seat {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
}

.bar-delivery-items {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-delivery-btn {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.bar-delivery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.3);
}

.bar-delivery-btn:active {
  transform: translateY(0);
}

/* Station Navigation */
.station-nav {
  display: flex;
  gap: 8px;
}

.station-btn {
  flex: 1;
  padding: 12px 8px;
  background: var(--color-bg-dark);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.station-btn.active {
  background: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary-light);
}

/* Draggable Items */
.dirty-item,
.clean-item {
  width: 55px;
  height: 55px;
  background: var(--color-bg-card);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: grab;
  position: relative;
  touch-action: none;
  user-select: none;
}

.dirty-item.mini {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

.dirty-item:active,
.dirty-item.dragging {
  cursor: grabbing;
  transform: scale(1.1);
  z-index: 1000;
}

.dirty-indicator {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 0.75rem;
}

.clean-item {
  border-color: var(--color-accent-green);
  background: rgba(0, 187, 79, 0.1);
}

.clean-item .shine {
  animation: sparkle 1s infinite;
}

.clean-check {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 0.625rem;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

/* Clean Rack */
.clean-rack {
  min-height: 60px;
  background: rgba(0, 187, 79, 0.1);
  border: 2px solid var(--color-accent-green);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.store-dishes-btn {
  width: 100%;
  padding: 12px;
  background: var(--color-accent-green);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
}

.store-dishes-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════
   SINK STATION
   ═══════════════════════════════════════════════════════════════ */

.sink-station,
.dishwasher-station,
.trash-station {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.station-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.station-header h3 {
  flex: 1;
  font-size: 1rem;
  color: var(--color-text);
}

.back-btn {
  padding: 8px 14px;
  background: var(--color-bg-dark);
  border: 2px solid var(--color-text-muted);
  border-radius: var(--radius-full);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
}

.sink-basin {
  min-height: 280px;
  background: linear-gradient(180deg, #4a90a4 0%, #2d5a6b 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 4px solid #5a7a8a;
}

.sink-empty {
  text-align: center;
  color: rgba(255,255,255,0.7);
  padding: 20px;
}

.water-animation {
  font-size: 3rem;
  animation: float 2s ease-in-out infinite;
  margin-bottom: 12px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.drop-hint {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

/* Dish in Sink */
.dish-in-sink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  width: 100%;
}

.dish-emoji {
  font-size: 4rem;
  animation: bounce 0.5s infinite alternate;
}

.dish-grime {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(139,90,43,0.9) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.scrub-area {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.scrub-hint {
  color: white;
  font-weight: 700;
  margin-bottom: 8px;
}

.scrub-animation {
  font-size: 2rem;
  animation: scrub 0.3s ease-in-out infinite alternate;
}

@keyframes scrub {
  0% { transform: translateX(-10px) rotate(-10deg); }
  100% { transform: translateX(10px) rotate(10deg); }
}

.wash-progress-bar {
  width: 100%;
  height: 16px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-green), var(--color-secondary));
  transition: width 0.1s linear;
}

.progress-fill.low {
  background: linear-gradient(90deg, #FF4444, #FF6B35);
}

.progress-text {
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

#finish-wash {
  padding: 12px 30px;
  background: var(--color-accent-green);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

#finish-wash:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Bus Bin Mini */
.bus-bin-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.3);
}

.more-items {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   DISHWASHER STATION
   ═══════════════════════════════════════════════════════════════ */

.dishwasher {
  background: linear-gradient(180deg, #555 0%, #333 100%);
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 4px solid #666;
}

.dishwasher.running {
  animation: glow 2s infinite;
  border-color: var(--color-secondary);
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(78, 205, 196, 0.3); }
  50% { box-shadow: 0 0 30px rgba(78, 205, 196, 0.6); }
}

.dishwasher-rack {
  min-height: 120px;
  background: #222;
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  align-content: flex-start;
  margin-bottom: 16px;
}

.rack-item {
  width: 45px;
  height: 45px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.rack-item.washing {
  animation: wash-pulse 0.5s ease-in-out infinite alternate;
}

@keyframes wash-pulse {
  0% { transform: scale(1); filter: brightness(1); }
  100% { transform: scale(1.1); filter: brightness(1.3) drop-shadow(0 0 5px var(--color-secondary)); }
}

.dishwasher-controls {
  text-align: center;
}

.wash-cycle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cycle-wave {
  font-size: 2.5rem;
  animation: wave 0.8s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(10deg); }
}

.cycle-timer {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.cycle-progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.capacity-indicator {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

#start-dishwasher {
  width: 100%;
  padding: 14px;
  background: var(--color-secondary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

#start-dishwasher:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════
   TRASH STATION
   ═══════════════════════════════════════════════════════════════ */

.trash-bin-full {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: 30px;
  text-align: center;
}

.trash-bag {
  font-size: 5rem;
  animation: trash-wobble 2s ease-in-out infinite;
}

.trash-bag.full {
  animation: trash-shake 0.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px #FF4444);
}

@keyframes trash-wobble {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

@keyframes trash-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.trash-count {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 12px;
}

.trash-not-full {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

#empty-trash {
  width: 100%;
  padding: 16px;
  background: #FF4444;
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  animation: pulse 1s infinite;
}

#empty-trash:disabled {
  background: var(--color-bg-dark);
  color: var(--color-text-muted);
  animation: none;
  cursor: not-allowed;
}

.empty-animation {
  text-align: center;
  padding: 20px;
}

.compactor {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent-yellow);
  animation: crush 0.5s ease-in-out infinite;
}

@keyframes crush {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.8); }
}

/* ═══════════════════════════════════════════════════════════════
   TABLE SELECTOR
   ═══════════════════════════════════════════════════════════════ */

.table-selector-view h3 {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 12px;
  text-align: center;
}

.tables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.table-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.table-card:active {
  transform: scale(0.98);
}

.table-card.dirty {
  border-color: var(--color-primary);
  background: rgba(255, 107, 53, 0.1);
}

.table-card.clean {
  opacity: 0.7;
}

.table-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.table-num {
  font-weight: 700;
  font-size: 0.875rem;
}

.table-seats {
  font-size: 0.625rem;
  color: var(--color-text-muted);
}

.table-status {
  text-align: center;
}

.dirty-badge {
  background: var(--color-primary);
  color: white;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 700;
}

.clean-badge {
  background: var(--color-accent-green);
  color: white;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 700;
}

.no-tables {
  grid-column: span 2;
  text-align: center;
  color: var(--color-text-muted);
  padding: 40px;
}

/* ═══════════════════════════════════════════════════════════════
   TABLE CLEANING
   ═══════════════════════════════════════════════════════════════ */

.table-header-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg-card);
  padding: 12px;
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
}

.table-header-bar h3 {
  flex: 1;
  font-size: 0.875rem;
}

.finish-table-btn {
  padding: 8px 16px;
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  border: none;
  border-radius: var(--radius-full);
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
  transition: all 0.2s;
}

.finish-table-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.finish-table-btn:active {
  transform: translateY(0);
}

.table-surface-container {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: 16px;
  margin-bottom: 12px;
}

.table-surface {
  aspect-ratio: 16/10;
  background:
    /* Wood grain overlay */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    ),
    /* Wood base gradient */
    linear-gradient(180deg, #8B6914 0%, #6B4E0A 50%, #5A3F08 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  touch-action: none;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.1),
    inset 0 -2px 4px rgba(0,0,0,0.2);
}

/* Wood grain texture using pseudo-element */
.table-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 8px,
      rgba(139,105,20,0.1) 8px,
      rgba(139,105,20,0.1) 9px
    );
  pointer-events: none;
  opacity: 0.6;
}

/* Wood knots effect */
.table-surface::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(90,63,8,0.4) 0%, transparent 70%);
  border-radius: 50%;
  top: 20%;
  left: 15%;
  pointer-events: none;
}

.table-surface.round {
  border-radius: 50%;
  aspect-ratio: 1;
}

/* Wipe Canvas (Grime Layer) */
.wipe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='24'%3E🧽%3C/text%3E%3C/svg%3E") 16 16, auto;
  touch-action: none;
  z-index: 10;
}

.wipe-canvas:active {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='24'%3E✨%3C/text%3E%3C/svg%3E") 16 16, auto;
}

/* Table Items */
.table-item {
  position: absolute;
  font-size: 1.75rem;
  cursor: grab;
  touch-action: none;
  user-select: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform 0.1s;
}

.table-item:active,
.table-item.dragging {
  cursor: grabbing;
  transform: scale(1.2);
  z-index: 1000;
}

.dish-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

/* Wipe Instruction */
.wipe-instruction-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.wipe-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
  animation: bounce 1s infinite;
}

/* Bus Bin Drop Zone */
.bus-bin-drop-zone {
  background: linear-gradient(180deg, #4a3c31 0%, #3a2c21 100%);
  border: 3px dashed #8B5A2B;
  border-radius: var(--radius-xl);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.bus-bin-drop-zone.drag-over {
  background: linear-gradient(180deg, #5a4c41 0%, #4a3c31 100%);
  border-color: var(--color-secondary);
}

.bin-icon {
  font-size: 2rem;
}

.bin-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
}

.bin-hint {
  font-size: 0.625rem;
  color: var(--color-text-muted);
}

/* Cleaning Progress */
.cleaning-progress {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: 12px;
}

.items-progress,
.grime-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.75rem;
}

.grime-progress {
  margin-bottom: 0;
}

.progress-bar {
  width: 100px;
  height: 8px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsive Adjustments */
@media (max-height: 700px) {
  .busser-content {
    padding: 8px;
  }
  
  .dirty-item,
  .clean-item {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .sink-basin {
    min-height: 200px;
  }
  
  .dish-emoji {
    font-size: 3rem;
  }
}

@media (min-height: 800px) {
  .dish-station {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .bus-bin-area {
    grid-column: span 2;
  }
  
  .station-nav {
    grid-column: span 2;
  }
  
  .clean-rack-area {
    grid-column: span 2;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WALKING TO TABLE VIEW
   ═══════════════════════════════════════════════════════════════ */

.walking-to-table-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  min-height: 300px;
}

.walking-animation {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.walker-icon {
  font-size: 3rem;
  animation: walk-bounce 0.6s infinite alternate;
}

.walking-path {
  width: 150px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  position: relative;
}

.walking-dot {
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation: walk-progress 0.8s linear infinite;
}

.target-icon {
  font-size: 2.5rem;
  opacity: 0.7;
}

.walking-to-table-view h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--color-text);
}

.walking-to-table-view p {
  font-size: 1rem;
  color: var(--color-text-muted);
}

@keyframes walk-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes walk-progress {
  0% { left: 0; }
  100% { left: calc(100% - 12px); }
}
