/* Le conteneur plein écran */
#es-search-overlay {
    display: none; /* Caché par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98); /* Blanc presque opaque */
    z-index: 9999;
    padding: 50px;
    overflow-y: auto;
}

/* Le grand champ de saisie central */
.es-big-input {
    width: 80%;
    margin: 0 auto 40px auto;
    display: block;
    font-size: 40px;
    border: none;
    border-bottom: 2px solid #2fb5d2;
    outline: none;
    padding: 10px;
}

/* Grille de résultats (3 ou 4 colonnes) */
#es-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Bouton pour fermer */
.es-close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 30px;
    cursor: pointer;
}