.suggestions{ 
  position:relative;
 }
.suggestions-wrapper{ display:flex; gap:0.5rem; align-items:center; position:relative }
.suggestions-wrapper input { flex:1 }
.suggestions-wrapper .btn-secondary { padding:0.45rem 0.6rem }
.dropdown{ position:absolute; left:0; right:0; top:calc(100% + 6px); z-index:40; background:#fff; border-radius:8px; border:1px solid rgba(18,22,42,0.06); box-shadow:0 10px 30px rgba(18,22,42,0.06); overflow:hidden; max-height:20rem; overflow-y:auto }

/* small spinner that appears while suggestions load */
.suggest-loading{
  width:1rem;
  height:1rem;
  border-radius:50%;
  border:2px solid rgba(0,0,0,0.08);
  border-top-color: #c78700;
  animation: spin 800ms linear infinite;
  margin-left: 0.5rem;
  display: none; /* shown when active */
}
.suggest-loading[aria-hidden="false"]{ display:inline-block }
@keyframes spin{ to{ transform: rotate(360deg) } }
.dropdown .item{ padding:10px 12px; cursor:pointer; border-bottom:1px dashed #f1f4f8 }
.dropdown .item:last-child{ border-bottom:none }
.dropdown .item:hover, .dropdown .item.active{ background:#fbfffe }
.addr-line{ font-size:13px }
.muted{ font-size:12px; color:#6b7280 }
.dropdown mark{ background:transparent; color:#c78700; font-weight:600 }
select {

  /* reset */

  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}





/* ----------------------------------------------
              FORM STYLES for register.html
   ---------------------------------------------- */

.form-container,
.page-container {
  max-width: 1200px;
  margin: 2rem auto 3.75rem;
  width: 95%;
}
.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b1727;
  text-align: center;
  margin-bottom: 0.375rem;
}
.form-lead { 
  text-align:center; 
  color: #475569; 
  margin-bottom: 1.25rem; 
  font-size:1rem 
}
.form-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 1.25rem; 
}
.surface-card,
.form-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 18px rgba(11,23,39,0.06);
}

.form-card {
  display: grid;
  grid-template-columns: 1fr;
}

.surface-card {
  display: grid;
  gap: 0.75rem;
}

.form-card h2,
.section-title { 
  font-size: 1.125rem; 
  margin-bottom: 0.3125rem; 
  color: #0b1727 
}
.muted { 
  color:#6b7280; 
  font-size: 0.9375rem ;
}
#publicLink {
  margin-top: 0.3rem;
}
.form-card label { 
  display:block; 
  margin-top:0.6875rem; 
  font-size: 0.9375rem ;
  color:#0b1727 
}
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card input[type="password"],
.form-card input[type="url"],
.form-card input[type="number"],
.form-card textarea,
.form-card select {
  display:block;
  width:100%;
  padding:0.5625rem 0.625rem;
  margin-top:0.375rem;
  border: 0.0625rem solid #e6e9ee;
  border-radius: 0.375rem;
  font-size: 0.9375rem ;
  color:#0f172a;
}

.form-card textarea { 
  resize: vertical 
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus { 
  outline: 2px solid rgba(13,114,78,0.12); 
  border-color:#0d724e 
}
.form-card select {
  padding-right: 1rem;
}
select {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}



/* ----------------------------------------------
   Shared layout + page components
   ---------------------------------------------- */
.page-stack { 
  display: grid; 
  gap: 2.5rem; 
}

.page-hero { 
  text-align: center; 
  display: grid; 
  gap: 0.75rem; 
}

.page-hero.stack-sm {
  gap: 0.75rem;
}

.hero-eyebrow { 
  text-transform: uppercase; 
  letter-spacing: 0.18em; 
  font-size: 0.75rem; 
  color: #0d724e; 
  font-weight: 600; 
}

.stack-sm,
.stack-md,
.stack-lg {
  display: grid;
}

.stack-sm { gap: 0.5rem; }
.stack-md { gap: 0rem; }
.stack-lg { gap: 1.25rem; }

.card-grid { 
  display: grid; 
  gap: 1.25rem; 
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); 
}

.card-grid--tight { 
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); 
}

.link-accent { 
  color: #0d724e; 
  font-weight: 600; 
  font-size: 0.9375rem; 
}

.link-accent:hover { 
  text-decoration: underline; 
}

.form-caption { 
  font-size: 0.85rem; 
  color: #64748b; 
}

.subtle-card { 
  border: 1px solid #e6e9ee; 
  border-radius: 0.75rem; 
  padding: 1rem; 
  background: #fbfffe; 
  box-shadow: none; 
}

.faq-list, .help-list { 
  display: grid; 
  gap: 1rem; 
}

.faq-item { 
  border: 1px solid #e6e9ee; 
  border-radius: 0.75rem; 
  padding: 1rem 1.25rem; 
  background: #fbfffe; 
}

.faq-item h3 { 
  font-size: 1rem; 
  color: #0b1727; 
}

.timeline-list { 
  display: grid; 
  gap: 1rem; 
}

.timeline-item { 
  border: 1px dashed rgba(13,114,78,0.25); 
  border-radius: 0.75rem; 
  padding: 1rem 1.25rem; 
  background: #fbfffe; 
}

.timeline-pill { 
  font-size: 0.75rem; 
  font-weight: 700; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  color: #0d724e; 
}

.button-row { 
  display: flex; 
  gap: 0.75rem; 
  flex-wrap: wrap; 
  margin-top: 1rem;
}

.button-row a { 
  flex: 1 1 12rem; 
  text-align: center; 
}

.accent-card { 
  background: linear-gradient(135deg, #0b1727 0%, #0d724e 65%); 
  color: #ffffff; 
  border-radius: 12px; 
  padding: 1.75rem; 
  box-shadow: 0 20px 45px rgba(11,23,39,0.2); 
}

.accent-card p { 
  color: rgba(255,255,255,0.9); 
}

.accent-card .btn-secondary { 
  background: transparent; 
  color: #ffffff; 
  border-color: rgba(255,255,255,0.65); 
}

.input-affix { 
  display: flex; 
  gap: 0.75rem; 
  align-items: center; 
  border: 1px solid #e6e9ee; 
  border-radius: 0.5rem; 
  padding: 0.375rem 0.5rem; 
  background: #ffffff; 
}

.input-affix input { 
  border: none; 
  flex: 1; 
  font-size: 0.9375rem; 
  color: #0f172a; 
  padding: 0.25rem 0.25rem 0.25rem 0.125rem; 
}

.input-affix input:focus { 
  outline: none; 
}

.input-affix:focus-within { 
  border-color: #0d724e; 
  box-shadow: 0 0 0 3px rgba(13,114,78,0.12); 
}

.input-affix .btn-primary { 
  flex-shrink: 0; 
}

.filter-grid { 
  display: grid; 
  gap: 1rem; 
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); 
}

.form-field { 
  display: grid; 
  gap: 0.35rem; 
}

.form-field label { 
  font-size: 0.85rem; 
  font-weight: 600; 
  color: #0b1727; 
}

.filter-actions { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.5rem; 
  align-items: center; 
}

.filter-actions .chip { 
  margin: 0; 
}

.filter-actions p { 
  margin: 0; 
  flex: 1 1 12rem; 
}

.chip { 
  border: 1px solid rgba(13,114,78,0.25); 
  background: #f8fbfa; 
  color: #0d724e; 
  padding: 0.45rem 1.1rem; 
  border-radius: 999px; 
  font-size: 0.85rem; 
  font-weight: 600; 
  cursor: pointer; 
  transition: background 0.2s ease, border-color 0.2s ease; 
}

.chip:hover,
.chip:focus-visible { 
  background: #e2f7ee; 
  border-color: #0d724e; 
}

.results-grid { 
  display: grid; 
  gap: 1rem; 
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); 
}

.result-card { 
  border: 1px solid #e6e9ee; 
  border-radius: 0.75rem; 
  background: #ffffff; 
  box-shadow: 0 12px 24px rgba(11,23,39,0.08); 
  display: flex; 
  flex-direction: column; 
  height: 100%; 
}

.result-card-body { 
  padding: 1.25rem; 
  display: grid; 
  gap: 0.5rem; 
}

.result-name { 
  font-size: 1.0625rem; 
  color: #0b1727; 
}

.result-meta { 
  font-size: 0.9375rem; 
  color: #475569; 
}

.result-distance { 
  font-size: 0.85rem; 
  color: #0d724e; 
  font-weight: 600; 
}

.result-tags { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr)); 
  gap: 0.5rem; 
  font-size: 0.85rem; 
  color: #475569; 
}

.result-tags dt { 
  font-weight: 600; 
  color: #0d724e; 
}

.result-tags dd { 
  margin: 0; 
}

.result-card-footer { 
  margin-top: auto; 
  padding: 1rem 1.25rem; 
  border-top: 1px solid #e6e9ee; 
  display: flex; 
  justify-content: flex-end; 
}

.result-link { 
  color: #0d724e; 
  font-weight: 600; 
}

.result-link:hover { 
  text-decoration: underline; 
}

.empty-state { 
  text-align: center; 
  color: #94a3b8; 
}

.search-suggestions { 
  position: absolute; 
  left: 0; 
  right: 0; 
  top: calc(100% + 0.35rem); 
  background: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(11,23,39,0.1);
  z-index: 50;
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
}

.search-suggestions .suggestion { 
  padding: 0.75rem 1rem; 
  cursor: pointer; 
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s ease;
}

.search-suggestions .suggestion:last-child {
  border-bottom: none;
}

.search-suggestions .suggestion:hover,
.search-suggestions .suggestion.is-highlighted { 
  background: #f0fdf4; 
}

.suggestion-primary { 
  font-weight: 600; 
  color: #0b1727; 
  font-size: 0.95rem;
}

.suggestion-meta { 
  font-size: 0.8rem; 
  color: #64748b; 
  margin-top: 0.15rem;
  line-height: 1.4;
}



.two-col { 
  display:grid; 
  grid-template-columns: 1fr 1fr; 
  gap:0.625rem 


}

.two-col > div input { 
  width:100% 
}

.four-col {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;

}
.firstTwo {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  
}

.firstTwo div {
  width: 100%;
}

.sec-Two {
  display: flex;
  gap: 0.625rem;
  align-items: flex-end ;
}

#timezone-div {
  flex: 1;
  margin-top: 0.3rem;
  font-size: 0.9375rem;


}

.sec-Two button {
  padding: 0.5625rem 0.75rem;
}


.checkbox-label { 
  display:flex; 
  gap:0.375rem; 
  align-items:center; 
  margin-top:0.625rem; 
  font-size: 0.9375rem ;
}

.checkbox-label input { 
  transform: translateY(0.0625rem) 
}

.code-row { 
  display:flex; 
  gap:0.5rem; 
  align-items:flex-end; margin-top: 0.2875rem;
}

.code-row input { 
  max-width: 7.5rem 
}
.code-row > #generateCode {
  padding: 0.5938rem 0.625rem;
  font-size: 0.9375rem ;
}
.form-card > #editCodeHelp {
  display: block;
  margin-top: 0.625rem;
}
.form-actions { 
  display:flex; 
  gap:0.625rem; 
  margin-top:1rem 
}

/* Buttons (re-use site palette but ensure contrast) */
.btn-primary { 
  background-color: #0d724e; 
  color: #fff; 
  border: 0.0625rem solid #0d724e; 
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  padding: 0.5625rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary:disabled {
  background-color: #d1d5db;
  border-color: #9ca3af;
  color: #6b7280;
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-primary:not(:disabled):hover { 
  background-color: #10825a;
  border: #c78700 1px solid;
}
.btn-secondary { 
  background-color: #f4f4f4; 
  color:#0b1727; 
  border: 0.0625rem solid #e6e9ee; 
  border-radius: 0.5rem; 
  padding: 0.5625rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
}

/* ------------------------
       RESPONSIVE
    ------------------------ */
  
    @media (max-width: 768px) {
      .form-actions {
        flex-direction: column;
        gap: 0.75rem;
      }
      
      .form-actions button,
      .form-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.75rem;
      }
    }
    .hero-section h1 {
      font-size: 2.027rem;
    }
    .four-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    }

    .two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    } 
  

.two-col-login { 
  display:flex; 
  justify-content: space-between;
  align-items: baseline;
}



.main-container-login {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}
.main-and-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.form-alert {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
  font-weight: 600;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.form-alert[hidden] {
  display: none;
}

.btn-primary.is-loading,
.btn-secondary.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-primary.is-loading::after,
.btn-secondary.is-loading::after {
  content: '…';
  margin-left: 0.45rem;
}

.verification-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 23, 39, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 200;
}

.verification-overlay[hidden] {
  display: none;
}

@keyframes modalAppear {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.verification-modal {
  width: min(100%, 420px);
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 18px 38px rgba(11, 23, 39, 0.18);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  animation: modalAppear 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.verification-modal h2 {
  font-size: clamp(1.1rem, 5vw, 1.5rem);
  margin: 0;
  line-height: 1.2;
}

.verification-modal p,
.verification-modal .muted,
.verification-modal .small {
  font-size: clamp(0.8rem, 3vw, 0.9375rem);
  line-height: 1.5;
}

.verification-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #94a3b8;
}

.verification-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #0d724e;
  font-size: clamp(0.8rem, 3vw, 1rem);
}

.verification-modal .error {
  background: rgba(220, 38, 38, 0.12);
  border-radius: 0.5rem;
  padding: 0.55rem 0.75rem;
  color: #991b1b;
  font-size: clamp(0.8rem, 3vw, 0.9rem);
}

.verification-modal .error[hidden] {
  display: none;
}

.verification-modal input {
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.6rem 0.75rem;
  font-size: clamp(0.9rem, 4vw, 1rem);
}

.verification-modal input:focus {
  outline: 2px solid rgba(13, 114, 78, 0.2);
  border-color: #0d724e;
}

.verification-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.verification-modal .btn-primary,
.verification-modal .btn-secondary {
  font-size: clamp(0.85rem, 3vw, 1rem);
}

.link-button {
  background: transparent;
  border: none;
  color: #0d724e;
  font-weight: 600;
  text-decoration: underline;
  align-self: flex-start;
  cursor: pointer;
}

body.verification-blocked {
  overflow: hidden;
}

body.verification-blocked .main-container {
  pointer-events: none;
  user-select: none;
  opacity: 0.45;
  filter: blur(1px);
}
#resultsCount {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.5rem;
}