body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #1f2937;
  background-image: url("images/jendbcheetahbg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.col {
  flex: 1;
  min-width: 240px;
}

input,
select,
button {
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

button {
  background: #2563eb;
  color: #fff;
  cursor: pointer;
  border: none;
}

button:hover {
  background: #1d4ed8;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #e5e7eb;
}

th {
  background: #f9fafb;
}

.topbar {
  background-color: #111827;
  background-image: url("images/JDSLogoNewWithCheetah.jpg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 180px auto;
  min-height: 120px;
  color: #fff;
  padding: 12px 0;
}

.muted {
  color: #6b7280;
}

.topbar .muted {
  color: #d1d5db;
}

.error {
  color: #b91c1c;
  margin-top: 8px;
}

.success {
  color: #166534;
  margin-top: 8px;
}

.topbar-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  padding-left: 190px;
}

.topbar-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.topbar-title h1 {
  margin: 0;
  font-size: 36px;
}

.topbar-buttons {
  display: flex;
  gap: 8px;
}

.topbar-link {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

.topbar-link:hover {
  text-decoration: underline;
}