/**
 * CSS pour la page de résultats de recherche HEKTOR - Maquette
 * Styles conformes à la maquette fournie
 */

/* === WRAPPER PRINCIPAL === */
.hektor-resultats-maquette-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* === BARRE DE FILTRES === */
.hektor-resultats-filters {
    margin-top: -22px;
    position: relative !important;
    z-index: 1;
    background: #1e293b;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hektor-filters-row {
    background-color: #000000;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    position: relative;
    /* Important pour le positionnement des panneaux */
}

.hektor-filter-field {
    flex: 1;
    min-width: 140px;
}

.hektor-filter-select {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-right: 1px solid #FFFFFF;
    background: #000000;
    font-size: 14px;
    color: #f1f5f9;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f1f5f9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 40px;
}




.hektor-filter-select:focus {
    outline: none;
    background-color: #000000;
}

.hektor-filter-select option {
    background: #000000;
    color: #f1f5f9;
    padding: 8px;
}

.hektor-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #000000;
    color: white;
    border: none;
    font-size: 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 48px;
    height: 40px;
    flex-shrink: 0;
}

.hektor-filter-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hektor-filter-btn:hover {
    background: #000000;
    color: #FFFFFF;

}

.hektor-filter-btn:active {
    transform: translateY(0);
}

/* === STYLES POUR LES DROPDOWNS AVEC VALEURS SUR LIGNES SÉPARÉES === */
.hektor-dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.hektor-dropdown-label {
    font-size: 14px;
    font-weight: 500;
    color: #f1f5f9;
    margin-bottom: 2px;
    line-height: 1.2;
}

.hektor-dropdown-value {
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin-top: 2px;
}

/* S'assurer que les boutons dropdown s'adaptent à la nouvelle structure */
.hektor-filter-field.hektor-dropdown-field .hektor-filter-select {
    display: flex;
    align-items: flex-start;
    padding: 8px 14px;
    text-align: left;
    min-height: 40px;
}

/* === EN-TÊTE DES RÉSULTATS === */
.hektor-resultats-header {
    display: flex;
    flex-direction: column;
    margin-bottom: -10px;
    margin-top: 30px;
}

.hektor-resultats-toolbar {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    gap: 20px;
}

.hektor-resultats-info-left {
    flex-shrink: 0;
    min-width: 0;
}

.hektor-resultats-info-center {
    flex: 1;
    display: flex;
    justify-content: start;
    min-width: 0;
}

h6.hektor-resultats-title {
    margin: 0px;
}

.hektor-resultats-info-right {
    flex-shrink: 0;
    min-width: 0;
}

.hektor-resultats-maquette-wrapper .hektor-resultats-info h6.hektor-resultats-title {
    font-size: 14px !important;
    color: #000000 !important;
    margin: 0 !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
}

/* === CONTRÔLE DE TRI === */
.hektor-sort-control {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.hektor-sort-control label {
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

.hektor-sort-control select {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 180px;
}

.hektor-sort-control select:hover {
    border-color: #9ca3af;
}

.hektor-sort-control select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* === SECTION ALERTE DANS TOOLBAR === */
.hektor-resultats-toolbar .hektor-alert-section {
    position: relative;
}

.hektor-resultats-toolbar .hektor-alert-btn {
    margin-right: -3px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hektor-resultats-toolbar .hektor-alert-btn:hover {
    color: #999999;
}

.hektor-resultats-toolbar .hektor-alert-form {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    min-width: 300px;
}


.hektor-alert-created {
    background: #FFFFFF !important;
    color: #000000 !important;
    border: none !important;
}

.hektor-search-criteria {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.hektor-criterion {

    display: none;
    align-items: center;
    gap: 6px;
    background: #e3f2fd;
    color: #1565c0;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
}

.hektor-remove-criterion {
    background: none;
    border: none;
    color: #1565c0;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    padding: 0;
    margin-left: 4px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hektor-remove-criterion:hover {
    background: rgba(21, 101, 192, 0.1);
}

/* === SECTION ALERTE === */
.hektor-alert-section {
    position: relative;
}

.hektor-alert-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #000000;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hektor-alert-btn:hover {

    transform: translateY(-1px);
}

.hektor-alert-btn.hektor-create-alert-fallback {
    margin-top: 20px;
}

.hektor-alert-form {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    min-width: 300px;
}

.hektor-alert-content {
    padding: 20px;
}

.hektor-alert-content h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #212529;
}

.hektor-alert-content p {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #6c757d;
}

.hektor-alert-fields {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.hektor-alert-fields input[type="email"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    font-size: 14px;
}

.hektor-alert-save-btn {
    padding: 8px 16px;
    background: #000000;
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.hektor-alert-save-btn:hover {
    border: 1px solid #e6e6e6;
    background: #FFFFFF;
    color: #000000;
}

.hektor-alert-cancel {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
}

/* === GRILLE DES RÉSULTATS === */
.hektor-resultats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* === CARTE DE PROPRIÉTÉ === */
.hektor-property-card {
    padding-bottom: 20px;
    border: none;
    background: #FFFFFF;
    overflow: hidden;
    transition: all 0.3s ease;
    height: auto;
    /* Hauteur réduite pour plus de compacité */
    display: flex;
    flex-direction: column;
    box-shadow: none;
}



.hektor-property-card:hover {
    box-shadow: none;
    transform: none;
}

.hektor-property-image-container {
    position: relative;
    width: 100%;
    height: 80%;
    /* Maintenir la hauteur pour ratio carré */
    overflow: hidden;
    flex-shrink: 0;
}

/* Signe + au survol */
.hektor-property-image-container::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    font-weight: 100;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.hektor-property-card:hover .hektor-property-image-container::after {
    opacity: 1;
}

.hektor-property-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.hektor-property-image-link:hover {
    text-decoration: none;
}

.hektor-property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.hektor-property-card:hover .hektor-property-image {
    filter: grayscale(70%) brightness(0.8);
}

.hektor-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f9fa;
    color: #6c757d;
}

.hektor-image-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hektor-property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
}

.hektor-badge-vente {
    display: none;
    background: #dc3545;
}

.hektor-badge-location {
    background: #007bff;
}

.hektor-badge-programmeneuf {
    background: #28a745;
}

.hektor-badge-locationvacances {
    background: #fd7e14;
}

/* === INFO DE LA PROPRIÉTÉ === */
.hektor-property-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Alignement au début pour réduire l'espace */
    min-height: 0;
}

/* Ligne 1 : TYPE DE BIEN – NOMBRE DE PIÈCES */
.hektor-property-line1 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
    /* Espace réduit entre les lignes */
    line-height: 1.2;
}

/* Lien autour de la ligne 1 */
.hektor-property-line1-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hektor-property-line1-link:hover {
    text-decoration: none;
    color: inherit;
}

.hektor-property-line1-link:hover .hektor-property-line1 {
    color: #0066cc;
    transition: color 0.2s ease;
}

/* Ligne 2 : VILLE CODE POSTAL – SURFACE – PRIX */
.hektor-property-line2 {
    font-size: 1.1rem;
    color: #1e293b;
    line-height: 1.2;
    display: block;
    margin-top: 0;
}

/* Prix dans un div séparé pour mise en gras */
.hektor-property-price {
    display: inline;
    /* Inline pour rester dans le flow du texte */
    font-weight: 700;
    color: #1e293b;
}

/* Séparateur de prix pas en gras */
.hektor-price-separator {
    font-weight: normal;
    color: #1e293b;
}

.hektor-price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.hektor-property-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    line-height: 1.4;
}

.hektor-property-title a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hektor-property-title a:hover {
    color: #FFFFFF;
}

.hektor-property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 16px;
}

.hektor-property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.hektor-feature {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FFFFFF;
    font-size: 13px;
}

.hektor-property-actions {
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.hektor-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1e293b;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hektor-detail-btn:hover {
    background: #1e293b;
    text-decoration: none;
    color: white;
}

/* === PAS DE RÉSULTATS === */
.hektor-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.hektor-no-results-content h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin: 0 0 12px 0;
}

.hektor-no-results-content p {
    color: #FFFFFF;
    margin: 0 0 24px 0;
    font-size: 16px;
}

/* === PAGINATION === */
.hektor-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.hektor-pagination-btn,
.hektor-pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 40px;
}

.hektor-pagination-btn:hover,
.hektor-pagination-number:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    text-decoration: none;
}

.hektor-pagination-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #1e293b;
    color: white;
    font-size: 14px;
    min-width: 40px;
}

.hektor-pagination-numbers {
    display: flex;
    gap: 4px;
}

/* Indicateur de chargement pour la pagination */
.hektor-pagination a.loading {
    opacity: 0.7;
    pointer-events: none;
}

.pagination-loader {
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-left: 5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* === MESSAGES === */
.hektor-alert-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

.hektor-alert-message {
    background: white;
    border: 1px solid #dee2e6;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    animation: slideInRight 0.3s ease;
}

.hektor-alert-message.success {
    border-left: 4px solid #28a745;
    background: #f8fff9;
}

.hektor-alert-message.error {
    border-left: 4px solid #dc3545;
    background: #fff8f8;
}


.img-resultats-recherche {
    max-height: 40vh !important;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hektor-resultats-maquette-wrapper {
        padding: 15px;
    }

    .hektor-resultats-filters {
        padding: 15px;
        margin-bottom: 20px;
    }

    .hektor-filters-row {
        flex-direction: column;
        gap: 12px;
    }

    .hektor-filter-field {
        min-width: 100%;
    }

    .hektor-filter-btn {
        width: 100%;
        height: 44px;
        justify-content: center;
    }



    .hektor-resultats-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .hektor-resultats-info-left,
    .hektor-resultats-info-center,
    .hektor-resultats-info-right {
        flex: none;
        width: 100%;
    }

    .hektor-resultats-info-center {
        justify-content: flex-start;
    }

    .hektor-sort-control {
        justify-content: space-between;
    }

    .hektor-sort-control select {
        flex: 1;
        margin-left: 10px;
        min-width: 0;
    }

    .hektor-resultats-toolbar .hektor-alert-form {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        margin: 0;
        width: 90%;
        max-width: 350px;
    }

    .hektor-alert-section {
        align-self: stretch;
    }

    .hektor-alert-form {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        margin: 0;
        width: 90%;
        max-width: 350px;
    }

    .hektor-resultats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hektor-property-card {
        height: auto;
        /* Hauteur ajustée pour mobile */
    }

    .hektor-property-image-container {
        height: 160px;
        /* Hauteur image ajustée pour mobile */
    }

    .hektor-alert-messages {
        right: 10px;
        top: 10px;
        left: 10px;
    }

    .hektor-alert-message {
        max-width: none;
    }
}

/* === RESPONSIVE TABLETTE === */
@media (max-width: 1024px) and (min-width: 769px) {
    .hektor-resultats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hektor-resultats-maquette-wrapper .hektor-resultats-info h6.hektor-resultats-title {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    .hektor-property-info {
        padding: 10px;
    }

    .hektor-property-card {
        height: auto;
        /* Hauteur réduite pour très petits écrans */
    }

    .hektor-property-image-container {
        height: 140px;
        /* Hauteur image réduite pour très petits écrans */
    }

    .hektor-property-line1 {
        font-size: 13px;
        margin-bottom: 1px;
    }

    .hektor-property-line2 {
        font-size: 11px;
    }

    .hektor-price-value {
        font-size: 11px;
    }

    .hektor-pagination {
        flex-wrap: wrap;
        gap: 4px;
    }
}

/* ============================================================================
   STYLES SPÉCIFIQUES POUR LES PANNEAUX DROPDOWN DANS LA PAGE DE RÉSULTATS
   ============================================================================ */

/* Container pour tous les panneaux dropdown dans les résultats */
.hektor-resultats-maquette-wrapper .hektor-dropdown-panels {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
    /* Permet aux clics de passer à travers le container */
}

/* Position spécifique pour chaque panneau dans la page de résultats */
.hektor-resultats-maquette-wrapper .hektor-dropdown-panel {
    display: none;
    position: absolute;
    top: 5px;
    width: 300px;
    /* Largeur fixe plus petite */
    background: #000000;
    z-index: 99999;
    pointer-events: auto;
    animation: slideDown 0.3s ease-out;
    border: 1px solid #333333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Positionnement initial - sera ajusté par JavaScript */
.hektor-resultats-maquette-wrapper #dropdown-budget-results,
.hektor-resultats-maquette-wrapper #dropdown-surface-results,
.hektor-resultats-maquette-wrapper #dropdown-chambres-results {
    left: 0;
    /* Position initiale - sera calculée dynamiquement */
}

/* Animation d'apparition spécifique aux résultats */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Panneau visible dans les résultats */
.hektor-resultats-maquette-wrapper .hektor-dropdown-panel.active {
    display: block;
}

/* Contenu du panneau dans les résultats */
.hektor-resultats-maquette-wrapper .hektor-panel-content {
    padding: 20px;
    color: #FFFFFF;
    position: relative;
    z-index: 99990;
    pointer-events: auto;
}

.hektor-resultats-maquette-wrapper .hektor-panel-content h4 {
    margin: 0 0 15px 0;
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 600;
}

/* Actions du panneau dans les résultats */
.hektor-resultats-maquette-wrapper .hektor-panel-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
}

.hektor-resultats-maquette-wrapper .hektor-btn-primary {
    background: #000000;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 14px;

}

.hektor-resultats-maquette-wrapper .hektor-btn-primary:hover {
    background: #FFFFFF;
    color: #000000;
}

/* Styles pour les sliders dans les panneaux de résultats */
.hektor-resultats-maquette-wrapper .ubiflow-search-field {
    margin: 10px 0;
}

.hektor-resultats-maquette-wrapper .ubiflow-range-slider-container {
    padding: 0;
    margin: 15px 0;
}

.hektor-resultats-maquette-wrapper .ubiflow-range-slider {
    height: 8px;
    background: #333333;
    position: relative;
    margin: 10px 0;
}

.hektor-resultats-maquette-wrapper .ubiflow-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #FFFFFF;
}

.hektor-resultats-maquette-wrapper .ubiflow-range-labels span {
    color: #FFFFFF !important;
    font-size: 12px !important;
    font-weight: bold !important;
}

/* Responsive pour les panneaux de résultats */
@media (max-width: 768px) {
    .hektor-resultats-maquette-wrapper .hektor-dropdown-panel {
        width: 260px;
        left: 0 !important;
        /* Forcer l'alignement à gauche sur mobile */
    }
}

@media (max-width: 480px) {
    .hektor-resultats-maquette-wrapper .hektor-dropdown-panel {
        width: 240px;
        left: 0 !important;
    }

    .hektor-resultats-maquette-wrapper .hektor-panel-content {
        padding: 15px;
    }
}



.hektor-filter-select.hektor-dropdown-toggle.active {
    background-color: #000000 !important;
}

/* ============================================================================
   CORRECTION ALIGNEMENT CASES À COCHER DANS LES PANNEAUX DE RÉSULTATS
   ============================================================================ */

/* Alignement parfait des cases à cocher avec le texte dans les panneaux de résultats */
.hektor-resultats-maquette-wrapper .hektor-type-bien-results-option,
.hektor-resultats-maquette-wrapper .hektor-localisation-results-option {
    display: flex !important;
    align-items: center !important;
    padding: 8px 12px !important;
    min-height: 32px !important;
    line-height: 1.4 !important;
}

/* Assurer que les cases à cocher sont parfaitement centrées */
.hektor-resultats-maquette-wrapper .hektor-type-bien-results-option::before,
.hektor-resultats-maquette-wrapper .hektor-localisation-results-option::before {
    align-self: center !important;
    margin-right: 10px !important;
    flex-shrink: 0 !important;
}

/* Assurer que le texte est centré verticalement */
.hektor-resultats-maquette-wrapper .hektor-type-bien-results-option span,
.hektor-resultats-maquette-wrapper .hektor-localisation-results-option span {
    display: flex !important;
    align-items: center !important;
    flex: 1 !important;
    min-height: 16px !important;
    line-height: 1.4 !important;
}

/* Position corrigée des coches dans les panneaux de résultats */
.hektor-resultats-maquette-wrapper #dropdown-type-bien-results .hektor-type-bien-results-option::after,
.hektor-resultats-maquette-wrapper #dropdown-localisation-results .hektor-localisation-results-option::after {
    left: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}