/* =====================
   POS LOGIN THEME
===================== */

.login-page {
  background: radial-gradient(circle at top, #0b0b0b, #000);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  width: 420px;
  padding: 30px;
  background: #050505;
  border: 2px solid #00bfff;
  box-shadow: 0 0 30px #00bfff;
  text-align: center;
}

.brand {
  color: #00bfff;
  font-size: 28px;
  margin-bottom: 5px;
}

.subtitle {
  color: #fff;
  margin-bottom: 20px;
}

#pinDisplay {
  width: 100%;
  padding: 14px;
  font-size: 28px;
  text-align: center;
  background: #000;
  color: #00ffcc;
  border: 2px solid #00bfff;
  margin-bottom: 15px;
}

.keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.keypad button {
  padding: 18px;
  font-size: 20px;
  background: #0d0d0d;
  border: 2px solid #00bfff;
  color: white;
  cursor: pointer;
}

.keypad button:hover {
  background: #00bfff;
  color: black;
}

.success {
  background: #0f5132;
}

.danger {
  background: #842029;
}

#error {
  color: #ff4d4d;
  margin-top: 10px;
}

body {
  margin: 0;
  background: radial-gradient(#000, #050505);
  color: #fff;
  font-family: Arial, sans-serif;
}

.pos-container {
  display: flex;
  height: 100vh;
}

.left-actions {
  width: 160px;
  background: #0b0b0b;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.left-actions button {
  margin: 6px 0;
  padding: 12px;
  background: #111;
  border: 1px solid #00bfff;
  color: #fff;
  border-radius: 6px;
}

.left-actions .danger {
  background: #7a0000;
}

.spacer {
  height: 20px;
}

.order-panel {
  width: 260px;
  background: #0f0f0f;
  padding: 10px;
  border-right: 2px solid #00bfff;
}

.order-panel h3 {
  margin-top: 0;
}

.totals {
  margin-top: auto;
}

.total {
  font-size: 20px;
  color: #00ffcc;
}

.main-pos {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.top-bar, .categories, .bottom-bar {
  display: flex;
  padding: 10px;
  background: #101010;
}

.top-bar button,
.categories button,
.bottom-bar button {
  flex: 1;
  margin: 5px;
  padding: 14px;
  background: #111;
  color: #fff;
  border: 1px solid #00bfff;
  border-radius: 6px;
}

.pay {
  background: #008000;
}

.highlight {
  background: #0055aa;
}

.items-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
}

.items-grid button {
  padding: 20px;
  background: #1a1a1a;
  border: 1px solid #00bfff;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
}

.employee-footer {
  background: #000;
  padding: 8px;
  text-align: right;
  font-size: 14px;
}
