body {
  background-color: #ebedf2; /* navy theme */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}

/* Golden theme */
.text-gold { color: #e3b505; }
.border-gold { border: 2px solid #e3b505 !important; }

/* Table styling */
.table-gold {
  background-color: #e3b505 !important;
  color: #0b1a39 !important;
  font-weight: 600;
}

.table-navy {
  background-color: #0b1a39;
  color: white;
}

table td, table th {
  vertical-align: middle;
  border: 1px solid #e3b505 !important;
}

/* Card styling */
.card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.btn-outline-gold {
  border: 2px solid #e3b505;
  color: #0b1a39;
}

.btn-outline-gold:hover {
  background-color: #e3b505;
  color: #0b1a39;
}
/* Make footer stick to the bottom without touching HTML */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
