<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Conteneur principal */
#search-container {
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
}

/* Input de recherche */
#adresse-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 25px;
    outline: none;
    position: relative;
    box-sizing: border-box;
    border: 5px solid #9DE2D5; /* Bordure verte */
    box-shadow: 0 0 5px #9DE2D5; /* Effet lumineux */
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

#adresse-input:focus {
    border-color: #9DE2D5; /* Bordure plus marquÃ©e sur focus */
    box-shadow: 0 0 10px #9DE2D5; /* Accentuation de l'effet lumineux */
}

/* Loader */
#loader {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: none; /* MasquÃ© par dÃ©faut */
}

/* Liste des suggestions */
#suggestions {
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    display: none; /* MasquÃ© par dÃ©faut */
}

#suggestions li {
    padding: 10px;
    cursor: pointer;
}

#suggestions li:hover {
    background-color: #f1f1f1;
}

#suggestions .no-results {
    color: red;
    font-style: italic;
}

/* Conteneur des rÃ©sultats */
.collecte-container {
    display: none;
    justify-content: center;
    margin-top: 20px;
    background-color: #9DE2D5; /* Fond vert pÃ¢le */
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* LÃ©gÃ¨re ombre */
}

.collecte-item {
    text-align: center;
    padding: 0 20px;
    display: none; /* MasquÃ© par dÃ©faut */
}

.collecte-item img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.collecte-item p {
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: bold;
}
</pre></body></html>