/* Basic styles */
.ljaf-card { background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:16px;box-shadow:0 1px 2px rgba(0,0,0,0.04); }
.ljaf-row { display:flex; gap:12px; align-items:flex-end; flex-wrap:wrap; }
.ljaf-row label { display:block; }
.ljaf-row input, .ljaf-row select { min-width:260px; }
#ljaf-results { margin-top:16px; }
.ljaf-list { list-style:none; padding:0; margin:0; }
.ljaf-list-item { display:flex; justify-content:space-between; align-items:center; padding:12px; border-bottom:1px solid #eee; }
.ljaf-loc-title { font-weight:600; font-size:16px; }
.ljaf-loc-addr { color:#555; }
.ljaf-loc-dist { color:#111; font-weight:600; }

/* Modal */
.ljaf-modal { position:fixed; inset:0; background:rgba(0,0,0,0.45); z-index:9999; display:flex; align-items:center; justify-content:center; padding:20px; }
.ljaf-modal-content { background:#fff; border-radius:12px; width:100%; max-width:900px; padding:20px; position:relative; }
.ljaf-modal-close { position:absolute; top:8px; right:8px; background:#f3f4f6; border:0; border-radius:999px; width:36px; height:36px; font-size:20px; cursor:pointer; }

/* Form header + scrollable container */
.ljaf-form-header { font-size:20px; font-weight:600; margin:6px 0 12px; text-align:center; }
.ljaf-form-wrapper {
  max-height: 75vh;
  overflow-y: auto;
  padding-right: 10px;
  box-sizing: border-box;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  background: #fff;
}

/* --- Clean Application Form Grid --- */
.ljaf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}
.ljaf-form-grid .ljaf-field { display:block; }
.ljaf-form-grid .span-2 { grid-column: span 2; }
.ljaf-section {
  grid-column: span 2;
  font-size: 18px;
  font-weight: 600;
  margin-top: 6px;
  padding: 6px 0;
  border-top: 1px solid #eee;
}
.ljaf-form-grid label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.ljaf-form-grid input[type="text"],
.ljaf-form-grid input[type="email"],
.ljaf-form-grid input[type="tel"],
.ljaf-form-grid textarea,
.ljaf-form-grid select {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #cfd4d9;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  background: #fff;
}
.ljaf-form-grid textarea { min-height: 96px; }
.ljaf-multicheck .ljaf-inline { margin-right: 14px; margin-bottom: 6px; }

/* Sticky submit */
.ljaf-actions {
  grid-column: span 2;
  text-align: right;
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

/* Admin */
.ljaf-flex { display:flex; gap:12px; }

/* Captcha */
.ljaf-captcha-wrap { margin-top:10px; }

@media (max-width: 768px) {
  .ljaf-form-grid { grid-template-columns: 1fr; }
  .ljaf-actions, .ljaf-section, .ljaf-form-grid .span-2 { grid-column: span 1; }
}


/* Ensure modal overlays theme headers/menus */
.ljaf-modal { z-index: 999999; }
body.ljaf-noscroll { overflow: hidden; }
