body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  margin: 0;
}
.container {
  background: #1e293b;
  padding: 30px;
  border-radius: 12px;
  width: 800px;
  max-width: 90%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}
.login-container {
  width: 350px;
  text-align: center;
  margin-top: 10vh;
}

h2,
h3 {
  color: #38bdf8;
  margin-top: 0;
}

input,
select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #334155;
  background: #0f172a;
  color: white;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}

button {
  padding: 10px 16px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}
button:hover {
  background: #7dd3fc;
}
.btn-outline {
  background: transparent;
  border: 1px solid #38bdf8;
  color: #38bdf8;
}
.btn-outline:hover {
  background: #38bdf8;
  color: #0f172a;
}
.btn-danger {
  background: transparent;
  border: 1px solid #ef4444;
  color: #ef4444;
}
.btn-danger:hover {
  background: #ef4444;
  color: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #334155;
}
th {
  color: #94a3b8;
  font-size: 14px;
  text-transform: uppercase;
}

.badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}
.bg-active {
  background: #064e3b;
  color: #34d399;
}
.bg-revoked {
  background: #7f1d1d;
  color: #fca5a5;
}

/* VIEW TOGGLES */
#dashboard-view,
#form-view {
  display: none;
}

.header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #334155;
  padding-bottom: 15px;
}
.gap {
  display: flex;
  gap: 10px;
}
#error-msg {
  color: #fca5a5;
  margin-bottom: 15px;
  display: none;
  font-size: 14px;
}
