/* ══════════════════════════════════════════════════
   Leave application form (leave-application.php)
   This page has no .page-hero/.sec-wrap — it's just the form, so
   everything needed lives in this one file.
   ══════════════════════════════════════════════════ */

.holly {
  max-width: 760px;
  margin: 48px auto 80px;
  padding: 0 24px;
}

.holly-main-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-900);
  text-align: center;
  margin-bottom: 28px;
}

/* ALERTS */
.holly-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.holly-alert-success {
  background: oklch(95% 0.05 155);
  color: var(--green-800);
  border: 1px solid oklch(85% 0.08 155);
}
.holly-alert-error {
  background: oklch(95% 0.05 30);
  color: oklch(40% 0.15 30);
  border: 1px solid oklch(85% 0.08 30);
}

/* FORM */
#holly-form {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(90% 0.01 90);
  padding: 32px;
}

.holly-section { margin-bottom: 28px; }
.holly-section:last-of-type { margin-bottom: 0; }
.holly-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-900);
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--green-100);
}

.holly-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 4px;
}
.holly-col { flex: 1; min-width: 220px; }

.holly-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-600);
  margin-bottom: 6px;
}

.holly-input,
.holly-select,
.holly-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid oklch(88% 0.01 90);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-900);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.holly-textarea { min-height: 110px; resize: vertical; }
.holly-input:focus,
.holly-select:focus,
.holly-textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px var(--green-50);
}
.holly-input::placeholder,
.holly-textarea::placeholder { color: var(--text-400); }

.holly-btn-submit {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: var(--green-700);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.holly-btn-submit:hover { background: var(--green-800); }
.holly-btn-submit:disabled { opacity: 0.6; cursor: default; }

@media (max-width: 560px) {
  .holly { margin: 32px auto 56px; }
  .holly-main-title { font-size: 21px; }
  #holly-form { padding: 22px 18px; }
  .holly-row { gap: 16px; }
  .holly-col { min-width: 100%; }
}
