.autocomplete-container {
    position: relative;
    max-width: 50%;
}

h2 {
    font-weight: bolder;
}

#commune-search {
    margin-top: 8px;
    padding: 0.7em 1em;
    font-size: 1rem;
    width: 100%;
    border: 2px solid #dbe0d9;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

#commune-search:focus {
    outline: none;
    border-color: #4b8673;
    box-shadow: 0 0 3px rgba(75, 134, 115, 0.6);
}

.autocomplete-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.autocomplete-items div:hover {
    background-color: #e5f5f0;
}

#documents-container {
    margin-top: 2em;
    font-family: sans-serif;
}

#documents-container h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5em;
}

#documents-container ul {
    list-style: none;
    padding: 0;
}

#documents-container li {
    background: #f9f9f9;
    margin-bottom: 1em;
    padding: 1em;
    border-left: 4px solid #4b8673;
    border-radius: 4px;
}

/* Bouton Télécharger */
.btn-telecharger {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    text-align: center;
}

.btn-telecharger:hover {
    background-color: white;
    color: #333;
    cursor: pointer;
}

.column-agur-commune {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wp-block-column .btn-telecharger {
    margin-top: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .autocomplete-container {
        max-width: 80%;
    }

    #commune-search {
        width: 100%;
    }

    #documents-container h2 {
        font-size: 1.2rem;
    }

    #documents-container li {
        padding: 0.5em;
    }
}



