/* ============================= */
/* Centered Controls */
/* ============================= */

.centered-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.centered-controls select,
.centered-controls input {
  padding: 8px 12px;
  font-size: 14px;
  background: #111;
  color: #fff;
  border: 1px solid #444;
  border-radius: 4px;
}

.centered-controls input {
  min-width: 250px;
}

/* ============================= */
/* Collection Grid Layout */
/* ============================= */

#collection-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding: 20px 40px;
}

.record-card {
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease;
}

.record-card:hover {
  transform: scale(1.03);
}

.record-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

.record-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.record-card p {
  font-size: 13px;
  color: #ccc;
}

/* ============================= */
/* Pagination */
/* ============================= */

#pagination-container {
  text-align: center;
  margin: 20px 0 40px;
}

.page-btn {
  margin: 5px;
  padding: 6px 12px;
  background: #111;
  color: #fff;
  border: 1px solid #444;
  cursor: pointer;
}

.page-btn.active {
  background: #fff;
  color: #000;
}

/* ============================= */
/* Modal */
/* ============================= */

#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

#modal-overlay.hidden {
  display: none;
}

#modal-content {
  background: #111;
  color: #fff;
  padding: 25px;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 6px;
  position: relative;
}

#modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  cursor: pointer;
  font-size: 22px;
}

#collection-summary {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #ccc;
}

/* ============================= */
/* More Resources Link (Vinyl Page) */
/* ============================= */

.more-resources-link {
  text-align: right;
  margin-bottom: 0.5rem;
}

.more-resources-link a {
  font-size: 0.85rem;
  color: #888;                /* inactive gray */
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.more-resources-link a:hover,
.more-resources-link a.active {
  color: #00bfff;             /* active/hover blue */
  text-shadow: 0 0 6px #00bfff;
}