body {
  background-color: #121212;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

form#appointmentForm {
  background-color: #1e1e1e;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
}

label, .section-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #e0e0e0;
}

input[type="text"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  background-color: #2c2c2c;
  border: 1px solid #444;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
}

.button-group {
  margin-bottom: 20px;
}

.ward-btn, .purpose-btn {
  width: 100%;
  padding: 18px 12px;
  margin-bottom: 12px;
  background-color: #2c2c2c;
  border: 2px solid #444;
  border-radius: 12px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ward-btn.selected,
.purpose-btn.selected {
  border-color: #007bff;
  background-color: #003d80;
  color: #ffffff;
}

.ward-btn:hover, .purpose-btn:hover {
  border-color: #007bff;
}

#sealingDateDiv, #endowmentDateDiv, #otherReasonDiv {
  margin-bottom: 16px;
}

/* NEW: Location info note styling - blue theme, bold + italic */
.location-note {
  background-color: #1e3a5f;           /* Dark blue background */
  color: #a0d2ff;                      /* Light blue text */
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 5px solid #007bff;      /* Bright blue left border */
  font-style: italic;
  font-weight: 700;                    /* Bold */
  text-align: center;
  line-height: 1.4;
}

button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Info boxes stay the same */
#templeWorkerInfo, #ecclesiasticalInfo {
  background-color: #2c2c2c;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 5px solid #ffc107;
}