/* Minimal custom CSS since Bootstrap handles most styling */

body {
  background: #f8f9fa;
}

#appointment-section {
  max-width: 800px;
}

#appointment-status.success {
  color: green;
}

#appointment-status.error {
  color: red;
}

/* Center and inline-align supply hours */
#supply-hours-list li {
  text-align: center !important;
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 1rem;
}

/* Keep label bold but inline */
#supply-hours-list li .fw-semibold {
  font-weight: 600;
  margin-right: 4px;
}



/* :root {
  --crimson: #990000;
  --crimson-dark: #660000;
  --light-bg: #f5f5f5;
  --card-bg: #ffffff;
  --border-radius: 10px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0 20px 20px;
  background: linear-gradient(135deg, #f9f2f2, #f5f5f5);
}

/* HEADER */

/* .page-header {
  max-width: 900px;
  margin: 16px auto 24px;
}

.header-top {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.admin-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #ffffff;
  background: var(--crimson);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.1s ease;
}

.admin-link:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
}

.header-main {
  display: flex;
  align-items: stretch;
  gap: 16px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.header-text {
  padding: 16px 20px;
  flex: 2;
}

.header-text h1 {
  margin: 0 0 4px;
  color: var(--crimson);
}

.header-text p {
  margin: 0;
  color: #444;
}

.header-hero-image {
  flex: 1.5;
  min-height: 120px;
  background-image: url("https://images.pexels.com/photos/1407257/pexels-photo-1407257.jpeg");
  background-size: cover;
  background-position: center;
}

/* MAIN LAYOUT */

/* main {
  max-width: 900px;
  margin: 0 auto;
}

#appointment-section,
#info-section {
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

h2 {
  margin-top: 0;
}

.small-muted {
  font-size: 0.85rem;
  color: #666;
} */

/* BUTTONS */

/* .primary-button,
button {
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  background: var(--crimson);
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.primary-button:hover,
button:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

#toggle-form-btn {
  margin-bottom: 10px;
} */

/* FORM CARD */

/* .appointment-card {
  margin-top: 8px;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
}

input,
select,
textarea {
  margin-top: 4px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

/* Status Messages */

/* #appointment-status {
  margin-top: 10px;
  font-weight: bold;
}

#appointment-status.success {
  color: green;
}

#appointment-status.error {
  color: red;
}

/* Supply Hours */

/* #supply-hours-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
} */

/* /* #supply-hours-list li {
  padding: 6px 8px;
  border-radius: 4px;
  background: #faf0f0;
  border-left: 4px solid var(--crimson);
  margin-bottom: 6px;
  font-size: 0.9rem; 
} */

/* Footer */

/* footer {
  max-width: 900px;
  margin: 16px auto 0;
  text-align: center;
} */

/* footer p {
  font-size: 0.9rem;
  color: #666;
} */

/* Utility */

/* .hidden {
  display: none;
} */

/* Optional shared style if you still use primary-button from Button.js */
/* .primary-button {
  background: var(--crimson);
  color: #fff;
} */
