/**
 * ALJT Residence Search Widget - shared static styles
 * Replaces per-instance inline <style> blocks.
 */

.aljt-search-wrapper * { box-sizing: border-box; }
.aljt-search-wrapper { position: relative; margin-top: 25px; font-family: inherit; }

/* ONGLET */
.aljt-search-wrapper .aljt-tab {
    position: absolute; top: -38px; left: 0;
    background: #b9cc43; color: #fff;
    padding: 10px 25px; border-radius: 8px 8px 0 0;
    font-weight: 700; font-size: 15px; text-transform: uppercase;
    z-index: 1;
}

/* BOITE */
.aljt-search-wrapper .aljt-box {
    background-color: #ffffff !important; background: #ffffff !important;
    border-radius: 8px;
    padding: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative; z-index: 2;
}
.aljt-search-wrapper.has-tab .aljt-box {
    border-radius: 0 8px 8px 8px;
}

/* GRID — grid-template-columns applied inline per instance */
.aljt-search-wrapper .aljt-top-grid {
    display: grid; gap: 15px; align-items: center;
}

/* CHAMPS */
.aljt-search-wrapper .aljt-field-wrap {
    position: relative; width: 100%; height: 50px;
}
.aljt-search-wrapper .aljt-input {
    width: 100%; height: 100%;
    border: 1px solid #e5e7eb; border-radius: 6px;
    padding: 0 15px; font-size: 14px; color: #374151;
    background: #fff; appearance: none; -webkit-appearance: none;
    cursor: pointer; margin: 0;
}
.aljt-search-wrapper .aljt-input:focus { outline: none; border-color: #b9cc43; }

/* Flèche CSS */
.aljt-search-wrapper .aljt-arrow {
    position: absolute; right: 15px; top: 50%; margin-top: -2.5px;
    width: 0; height: 0;
    border-left: 5px solid transparent; border-right: 5px solid transparent;
    border-top: 5px solid #888; pointer-events: none;
}
.aljt-search-wrapper .nice-select { display: none !important; }

/* BOUTONS */
.aljt-search-wrapper .aljt-btn {
    height: 50px; border-radius: 6px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border: none; font-weight: 700; font-size: 15px;
    transition: all 0.2s; text-decoration: none; white-space: nowrap;
}
.aljt-search-wrapper .btn-toggle {
    background: #f4f8e6; color: #b9cc43;
    border: 1px solid #b9cc43; width: 100%; padding: 0; font-size: 18px;
}
.aljt-search-wrapper .btn-toggle:hover { background: #b9cc43; color: #fff; }
.aljt-search-wrapper .btn-search {
    background: #b9cc43; color: #fff; padding: 0 20px;
    text-transform: uppercase; width: 100%;
}
.aljt-search-wrapper .btn-search:hover { background: #a3b435; }

/* GRILLE AVANCÉE — grid-template-columns applied inline per instance */
.aljt-search-wrapper .aljt-bottom-grid {
    display: none; margin-top: 15px; padding-top: 15px;
    border-top: 1px solid #f0f0f0; gap: 15px;
}
.aljt-search-wrapper .aljt-bottom-grid.open { display: grid; }

@media (max-width: 991px) {
    .aljt-search-wrapper .aljt-top-grid,
    .aljt-search-wrapper .aljt-bottom-grid {
        grid-template-columns: 1fr !important;
    }
}
