/**
 * ══════════════════════════════════════════════════════════════════════════════
 * GÖKÇEOS PROTOTYPE UI V2 — ÇAMAŞIRHANE & TEKSTİL OPERASYON MASASI CSS
 * Barcode Scanner, Guest Laundry Orders, Reception Folio Billing, Linen Stock
 * ══════════════════════════════════════════════════════════════════════════════
 */

.lnd-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at 15% 15%, rgba(6, 182, 212, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.06) 0%, transparent 45%),
              #090d16;
  color: #f1f5f9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.lnd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.lnd-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lnd-logo-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.35);
}

.lnd-title-area h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lnd-title-area p {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0.15rem 0 0 0;
}

.lnd-tabs {
  display: flex;
  background: rgba(2, 6, 23, 0.6);
  padding: 0.25rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  gap: 0.25rem;
}

.lnd-tab-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.18s ease;
}

.lnd-tab-btn:hover {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.05);
}

.lnd-tab-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
  box-shadow: 0 2px 10px rgba(6, 182, 212, 0.35);
}

.lnd-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Scanner Barcode Box */
.lnd-scanner-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(14px);
  border: 1.5px dashed rgba(6, 182, 212, 0.4);
  border-radius: 14px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.lnd-barcode-input {
  flex: 1;
  min-width: 260px;
  background: rgba(2, 6, 23, 0.9);
  border: 1.5px solid rgba(6, 182, 212, 0.4);
  border-radius: 10px;
  color: #38bdf8;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'Courier New', Courier, monospace;
  padding: 0.75rem 1rem;
  letter-spacing: 0.1em;
  outline: none;
}

.lnd-barcode-input:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.3);
}

/* Status Badges */
.lnd-status-tag {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.lnd-status-washing { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.4); }
.lnd-status-drying { background: rgba(234, 179, 8, 0.2); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.4); }
.lnd-status-ironing { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.4); }
.lnd-status-ready { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.4); }
.lnd-status-delivered { background: rgba(100, 116, 139, 0.2); color: #94a3b8; border: 1px solid rgba(100, 116, 139, 0.4); }

/* Table styling */
.lnd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.lnd-table th {
  background: rgba(2, 6, 23, 0.7);
  color: #94a3b8;
  font-weight: 700;
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lnd-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
}

.lnd-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Machine Grid */
.lnd-machines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.lnd-machine-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lnd-machine-card.active {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.15);
}
