* { box-sizing: border-box; font-family: system-ui, Arial; }
body { margin:0; background:#0b1220; color:#e9eefc; }
.container { max-width: 1200px; margin: 0 auto; padding: 18px; }

.topbar { display:flex; justify-content:space-between; align-items:flex-start; gap: 14px; }
h1 { margin:0; font-size: 20px; }
.sub { opacity:.75; font-size: 12px; margin-top:4px; }

.top-actions { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
select, button, input {
  padding:10px 12px; border-radius:12px; border:1px solid #22335a;
  background:#121b31; color:#e9eefc;
}
button { cursor:pointer; }
button:hover { filter: brightness(1.1); }

.tabs { margin-top: 14px; display:flex; gap:10px; }
.tab { border-radius:999px; padding:10px 14px; opacity:.85; }
.tab.active { opacity:1; border-color:#4e74ff; }

.panel { display:none; margin-top: 14px; background:#121b31; border:1px solid #1d2a4a; border-radius:16px; padding: 14px; }
.panel.show { display:block; }

.cards { display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; margin-bottom: 12px; }
.card { background:#0f1930; border:1px solid #1d2a4a; border-radius:16px; padding: 14px; }
.label { opacity:.8; font-size: 13px; }
.value { font-size: 26px; margin-top: 6px; font-weight: 700; }

.table-wrap { overflow:auto; border-radius: 12px; border: 1px solid #22335a; }
table { width:100%; border-collapse: collapse; min-width: 900px; }
thead th { text-align:left; font-size: 12px; opacity:.8; padding: 10px; border-bottom: 1px solid #22335a; }
tbody td { padding: 10px; border-bottom: 1px solid #22335a; }
tbody tr:hover { background:#0b1428; }

.grid2 { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 900px) {
  .grid2 { grid-template-columns: 1fr; }
  table { min-width: 700px; }
}

.panel-head { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.row { display:flex; gap: 10px; }
.hide { display:none; }
.muted { opacity:.75; font-size: 13px; }
.gate { max-width: 520px; }

/* ===============================
   Welcome Page – Hero Style
================================ */

.welcome-bg {
  min-height: 100vh;
  background: radial-gradient(
    circle at top,
    #0f1b3a 0%,
    #070d1f 60%,
    #050812 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e9eefc;
}

.welcome-container {
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.welcome-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #4e74ff;
}


.welcome-subtitle {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 36px;
}

.welcome-question {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.welcome-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.welcome-btn {
  width: 180px;
  height: 60px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px; /* squared but soft */
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.welcome-btn.admin {
  background: #4e74ff;
  color: #ffffff;
}

.welcome-btn.customer {
  background: transparent;
  color: #e9eefc;
  border-color: #2b3d6f;
}

.welcome-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
