/* Atlas POS industry layer UI */
.atlas-industry-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  background: linear-gradient(90deg, #0f172a, #1e293b);
  border-bottom: 1px solid #334155;
  position: sticky;
  top: 0;
  z-index: 50;
}
.atlas-industry-btn {
  border: 1px solid #475569;
  background: #1e293b;
  color: #e2e8f0;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.atlas-industry-btn:hover,
.atlas-industry-btn.active {
  background: #4f46e5;
  border-color: #818cf8;
  color: #fff;
}
.atlas-dash-btn { margin-left: auto; }
.atlas-industry-panels { padding: 0.5rem 0.75rem; }
.atlas-panel { margin-bottom: 0.5rem; }
.atlas-panel.hidden { display: none; }
.atlas-panel-inner {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.atlas-panel-inner h3 { margin: 0; font-size: 0.9rem; width: 100%; }
.atlas-table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
  width: 100%;
}
.atlas-table-card {
  border-radius: 10px;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
}
.atlas-table-card.free { background: #dcfce7; color: #166534; }
.atlas-table-card.occupied { background: #fee2e2; color: #991b1b; }
.atlas-table-card.selected { border-color: #4f46e5; }
.atlas-input {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  font-size: 0.85rem;
}
.atlas-btn {
  border: none;
  background: #4f46e5;
  color: #fff;
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
#atlasDashboardStats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
  width: 100%;
}
.atlas-stat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.6rem;
  font-size: 0.8rem;
}
.atlas-rest-actions { display:flex; flex-wrap:wrap; gap:.4rem; width:100%; margin-bottom:.5rem; }
.atlas-link-btn { text-decoration:none; display:inline-flex; align-items:center; }
.atlas-shift-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
.atlas-shift-status { font-size: 0.8rem; font-weight: 600; color: #334155; min-width: 140px; }
.atlas-input-sm { max-width: 120px; padding: 0.3rem 0.5rem; font-size: 0.78rem; }
.atlas-btn-sm { padding: 0.3rem 0.55rem; font-size: 0.75rem; }
.atlas-hidden { display: none !important; }
.atlas-loyalty-badge, .atlas-alert-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
}
.atlas-alert-badge { background: #fef3c7; color: #92400e; }
