:root {
  --navy: #0b1a39;
  --gold: #e3b505;
  --light-bg: #f8f9fa;
}

/* Page base */
body {
  background-color: var(--light-bg);
  font-family: "Poppins", sans-serif;
}

.border-gold {
  border: 3px solid var(--gold) !important;
}

.card {
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.text-gold {
  color: var(--gold);
}

/* Table */
table {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

thead {
  background-color: var(--navy);
  color: var(--gold);
  font-weight: 600;
}

th, td {
  border-color: rgba(0, 0, 0, 0.1) !important;
  font-size: 0.95rem;
  vertical-align: top;
}

tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}

tbody tr:hover {
  background-color: rgba(227, 181, 5, 0.1);
}

ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}

/* Footer */
footer {
  background-color: #0b1a39;
  border-top: 4px solid #e3b505;
}


/* Responsive */
@media (max-width: 768px) {
  th, td {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
}

/* Make footer stick to the bottom without touching HTML */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
