/* credits/style.css */
.credits-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.credits-page h1, .credits-page .lead {
    text-align: center;
}
.lead { color: #ccc; margin-bottom: 40px; }

.credit-category {
    margin-bottom: 60px;
}
.credit-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.credit-category-header h2 {
    margin: 0;
    font-size: 2.5rem;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.person-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.person-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    margin-bottom: 15px;
}
.person-card h3 { margin: 0; font-size: 1.5rem; }
.person-card .role { color: #ccc; margin-bottom: 15px; }
.person-card .quote {
    font-style: italic;
    color: #aaa;
    border-left: 3px solid #555;
    padding-left: 10px;
    margin: 0;
    text-align: left;
}
.person-card .admin-controls { justify-content: center; }

/* Admin and Modal Styles */
.admin-controls { display: none; text-align: center; margin-bottom: 40px; gap: 15px; }
body.admin-logged-in .admin-controls { display: flex; justify-content: center; }
/* ... (Add your standard modal, button, and form styles here, they are the same as announcements) ... */

/* --- Standard Modal, Button, and Form Styles --- */

/* Modal styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-content {
  background: #1a1a1a;
  padding: 24px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Form styles */
form label {
  display: block;
  margin-bottom: 16px;
  color: #ccc;
}
form input,
form textarea,
form select {
  width: 100%;
  padding: 8px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 4px;
  color: #fff;
  margin-top: 4px;
}
form button[type="submit"] {
  width: 100%;
  margin-top: 10px;
}

/* Standard Button Styles */
.primary-btn, .secondary, .delete-btn, .edit-btn {
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}
.primary-btn { background: var(--accent-color); }
.secondary { background: #555; }
.delete-btn { background: #900; }
.edit-btn { background: #007bff; }

/* --- NEW: Styles for Bulk Add Modal --- */
#bulk-form-container {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 15px; /* For the scrollbar */
}

.person-entry {
    border: 1px dashed #444;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
}

.person-entry .remove-person-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #500;
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.bulk-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}