/* Page Background */
body {
  background: white;
  color: white;
}

/* Header */
.custom-header {
  background: #0b1a39;
  color: white;
  padding: 20px 0;
  border-bottom: 3px solid #d4af37;
}

.custom-header p {
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Golden bordered table */
.custom-table {
  background: white;
  color: black;
  border: 2px solid #d4af37 !important;
}

.custom-table th {
  background: #d4af37;
  color: black;
  font-weight: bold;
}

.custom-table td,
.custom-table th {
  border: 1px solid #d4af37;
}

/* Footer */
.custom-footer {
  background: #0b1a39;
  color: white;
  padding: 12px 0;
  margin-top: 30px;
  border-top: 3px solid #d4af37;
  text-align: center;
}

/* Make footer stick to the bottom without touching HTML */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
