/* pino-form.css — oddelené štýly */
:root{
  --bg: #f7f7fb;
  --panel: #ffffff;
  --text: #0f1220;
  --muted: #4b5565;
  --line: #e5e7ef;
  --acc: #0b66ff;
  --radius: 10px;
  --labelW: 230px;
  --gap: 4px;
  --containerW: 960px;
  --section-gap: 24px;
}
*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0; background:var(--bg); color:var(--text);
  font: 15px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}
.page{ width: var(--containerW); margin: 32px auto; }
.head{ margin-bottom: 20px; text-align:center; }
.logo{ width:150px; height:auto; display:block; margin:0 auto 8px; }
.title{ font-size: 24px; font-weight: 700; margin: 0 0 6px 0; }
.subtitle{ color: var(--muted); margin:0; }

.info{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding:20px; margin-bottom: 24px; line-height:1.6;
}
.info h2{ margin-top:0; font-size:18px; color:var(--acc); }
.info ul{ margin:10px 0; padding-left:20px; }
.info p, .info a{ font-size:15px; }
.info a{ color: inherit; text-decoration: underline; font-weight: 600; }

.card{ background:var(--panel); border:1px solid var(--line); border-radius: var(--radius); }
form{ padding: 20px; }

.section{ border-top:1px solid var(--line); padding-top: var(--section-gap); margin-top: var(--section-gap); }
.section:first-of-type{ border-top:0; padding-top:0; margin-top:0; }
.section-h{ display:flex; align-items:center; gap:10px; margin-bottom: 12px; }
.badge{ width:28px; height:28px; border-radius:50%; background:#eef2ff; color:#233876; display:grid; place-items:center; font-weight:700; }
.section-title{ font-size:16px; font-weight:700; margin:0; }

.form-row{ display:flex; align-items: flex-start; gap: var(--gap); }
.form-row + .form-row{ margin-top: 10px; }
.label{ width: var(--labelW); color: var(--muted); padding-top: 10px; }
.control{ flex: 1; min-width: 0; }

.label span.req{ color: var(--acc); font-weight: 600; }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea{
  width: 100%; padding: 10px 12px; border-radius: 8px; border:1px solid var(--line); background:#fff; outline: none;
}
textarea{ min-height: 110px; resize: vertical; }

.slots{ width:100%; border-collapse: collapse; border:1px solid var(--line); table-layout: fixed; }
.slots th, .slots td{ border:1px solid var(--line); padding:8px; text-align:left; }
.slots th{ background:#fafbff; font-weight:600; }
.slots colgroup col:nth-child(1){ width: 8%; }
.slots colgroup col:nth-child(2){ width: 30%; }
.slots colgroup col:nth-child(3){ width: 38%; }
.slots colgroup col:nth-child(4){ width: 24%; }
.slots td:nth-child(4), .slots th:nth-child(4){ white-space: nowrap; }
.slots th.pick, .slots td.pick{ text-align:center; }
.slots tbody tr{ cursor:pointer; }
.slots tbody tr:hover{ background:#f6f8ff; }
.slots tbody tr.selected{ outline:2px solid var(--acc); outline-offset:-2px; }

.note{ background:#fafbff; border:1px dashed var(--line); border-radius:8px; padding:10px 12px; color:#1f2937; }

.consents{ display:grid; gap:8px; }
.consents label{ display:flex; align-items:flex-start; gap:10px; line-height:1.5; }
.consents input[type="checkbox"]{ margin-top:3px; }

.actions{ display:flex; gap:12px; align-items:center; justify-content:center; margin-top: 18px; }
button{ appearance:none; border:0; border-radius:8px; padding:15px 24px; font-weight:700; font-size:1.5em; cursor:pointer; color:#fff; background: var(--acc); }

/* Spodná medzera za tlačidlom – zmenšená o 40% (80px -> 48px) */
.spacer{ height: 48px; }

/* Text/obrázok na šedom pozadí pod formulárom */
.after-note{ text-align:center; color:#111827; font-weight:700; margin: 18px 0 0; }
.after-img{ display:block; margin:8px auto 0; width:140px; height:auto; }
.after-pad{ height: 120px; }
.after-pad2{ height: 100px; }

.hidden{ display:none; }

/* Centering reCAPTCHA */
.g-recaptcha {
  display: inline-block;
   margin: 15px auto !important;
   width: auto !important;
   height: auto !important;
   text-align: -webkit-center;
   text-align: -moz-center;
   text-align: -o-center;
   text-align: -ms-center;
}
