body {
  background-color: #f8f9fc;
  font-family: "Segoe UI", sans-serif;
}

/* Header */
.page-header {
  background-color: #0b1a39;
  border-bottom: 4px solid #e3b505;
}

.sub-title {
  color: #e3b505;
  font-size: 1.1rem;
  margin-top: 5px;
}

.library-img {
  width: 100%;
  height: 280px;          /* fixed equal height */
  object-fit: cover;      /* crops perfectly without distortion */
  border: 3px solid #e3b505; /* gold border */
  padding: 4px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}


/* Cards */
.section-card {
  border-left: 4px solid #e3b505;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.section-title {
  color: #0b1a39;
  border-bottom: 2px solid #e3b505;
  padding-bottom: 6px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Table */
.table-header {
  background-color: #0b1a39;
  color: white;
}

.table td, .table th {
  vertical-align: middle;
}

/* Footer */
.footer {
  background-color: #0b1a39;
  border-top: 4px solid #e3b505;
}

.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;
}
