/* SeenSecure Support — shared search UI + responsive fixes */
/* Estilo COMPLETO del buscador, único para todas las páginas: antes cada
   página de documentación definía (o no) su propia versión de .search-bar en
   su <style> interno, así que unas se veían bien y otras con el aspecto por
   defecto del navegador ("css diferente"). Ahora vive todo aquí. */
.ssc-logo-link { display: inline-flex; line-height: 0; }
.ssc-exit-support {
    position: absolute;
    left: 32px;
    background: #f0f5ff;
    border: 1px solid #c7d8f0;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.8em;
    color: #1e7ec8;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}
.ssc-exit-support:hover { background: #dce8f8; }
.ssc-search-wrap { position: relative; max-width: 480px; margin: 0 auto; }
.search-bar {
    display: flex;
    max-width: none;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
}
.search-bar input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 0.95em;
    font-family: inherit;
    outline: none;
}
.search-bar button {
    padding: 12px 24px;
    background: #0b5fa5;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95em;
    transition: filter 0.2s;
}
.search-bar button:hover { filter: brightness(1.08); }
.ssc-search-results { position: absolute; left: 50%; transform: translateX(-50%); top: 100%; margin-top: 6px; width: min(680px, 92vw); background: #fff; border: 1px solid #e1e8ed; border-radius: 10px; box-shadow: 0 12px 32px rgba(15, 60, 110, 0.18); z-index: 200; overflow: hidden; text-align: left; }
.ssc-search-item { display: block; padding: 12px 18px; border-bottom: 1px solid #eef2f6; color: #2c3e50; text-decoration: none; }
.ssc-search-item:last-child { border-bottom: none; }
.ssc-search-item:hover { background: #f0f5ff; }
.ssc-search-item-title { font-weight: 600; color: #1e7ec8; font-size: 0.95em; }
.ssc-search-item-snip { font-size: 0.82em; color: #66788c; margin-top: 2px; line-height: 1.5; }
.ssc-search-none { padding: 16px 18px; color: #66788c; font-size: 0.9em; }
.section { position: relative; }
.ssc-search-flash { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(30, 126, 200, 0.18); border-radius: 10px; pointer-events: none; animation: ssc-flash 2s ease-out forwards; z-index: 1; }
@keyframes ssc-flash { 0% { opacity: 1; } 100% { opacity: 0; } }
@media (max-width: 900px) {
    .header-inner { flex-wrap: wrap; justify-content: center; padding: 12px 16px 10px; gap: 10px; }
    .lang-bar { position: static; order: 20; width: 100%; justify-content: center; margin: 0; }
    .lang-btn { padding: 6px 12px; }
    .ssc-exit-support { position: static; order: 10; }
}
