/* ── SOTA Activation Zone ─────────────────────────────────────────────────── */

#sota-az-app {
    font-family: inherit;
    max-width: 900px;
    margin: 0 auto;
}

/* ── Search row ───────────────────────────────────────────────────────────── */

.saz-search-row {
    display: flex;
    gap: 0.5em;
    margin-bottom: 0.75em;
    flex-wrap: wrap;
}

#saz-ref-input {
    flex: 1 1 200px;
    padding: 0.55em 0.75em;
    font-size: 1.05em;
    border: 2px solid #bbb;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    outline: none;
    transition: border-color 0.2s;
}

#saz-ref-input:focus {
    border-color: #3a7e34;
}

#saz-search-btn {
    padding: 0.55em 1.2em;
    font-size: 1em;
    font-weight: 600;
    background: #3a7e34;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

#saz-search-btn:hover {
    background: #2d6229;
}

#saz-search-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

/* ── Status messages ──────────────────────────────────────────────────────── */

.saz-status {
    padding: 0.5em 0.8em;
    border-radius: 4px;
    margin-bottom: 0.6em;
    font-size: 0.95em;
}

.saz-status-info {
    background: #e8f4fd;
    color: #2c6e9e;
    border-left: 3px solid #2c6e9e;
}

.saz-status-warn {
    background: #fff8e1;
    color: #7a5c00;
    border-left: 3px solid #f5c842;
}

.saz-status-error {
    background: #fdecea;
    color: #c0392b;
    border-left: 3px solid #c0392b;
}

/* ── Summit info bar ──────────────────────────────────────────────────────── */

#saz-info {
    background: #f4f9f3;
    border: 1px solid #c5dfc2;
    border-radius: 4px;
    padding: 0.45em 0.8em;
    margin-bottom: 0.6em;
    font-size: 0.97em;
}

#saz-summit-name {
    color: #2d5a27;
}

#saz-summit-meta {
    color: #555;
}

/* ── Map container ────────────────────────────────────────────────────────── */

#saz-map {
    display: none;
    width: 100%;
    height: 520px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 0.5em;
    background: #f0ede6;
}

/* ── Summit marker ────────────────────────────────────────────────────────── */

.saz-summit-icon {
    background: transparent !important;
    border: none !important;
}

.saz-summit-pin {
    font-size: 22px;
    color: #c0392b;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    line-height: 1;
    text-align: center;
}

/* ── API note / cache indicator ───────────────────────────────────────────── */

#saz-api-note {
    font-size: 0.82em;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4em;
    margin-top: 0.2em;
}

.saz-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.saz-dot-live   { background: #27ae60; }
.saz-dot-cached { background: #2980b9; }

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
    .saz-search-row { flex-direction: column; }
    #saz-search-btn { width: 100%; }
    #saz-map        { height: 380px; }
}

/* ── Credit line ──────────────────────────────────────────────────────────── */
.saz-credit {
    font-size: 0.78em;
    color: #888;
    margin-top: 0.3em;
}
.saz-credit a {
    color: #666;
}

/* ── GPX download link ────────────────────────────────────────────────────── */
#saz-download {
    margin-top: 0.4em;
}
#saz-download-link {
    display: inline-block;
    font-size: 0.9em;
    color: #3a7e34;
    text-decoration: none;
    border: 1px solid #3a7e34;
    padding: 4px 12px;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
}
#saz-download-link:hover {
    background: #3a7e34;
    color: #fff;
}
