.country-selection-section-index {
    padding: 30px 0 30px;
    background-color: #ececec;
}

.country-selection-section-faq {
    padding: 30px 0 30px;
    background-color: #ececec;
}

.country-selection-section-pays {
    padding: 30px 0 0px;
    background-color: #ececec;
}
.country-select-container {
    display: inline-block;
    position: relative;
    width: 100%; /* Take full width of the container */
    max-width: 600px;
}

.country-select {
    width: 100%;
    padding: 15px; /* Augmente le padding pour un meilleur rendu */
    font-size: 18px; /* Augmente la taille de la police */
    border: 1px solid #ccc;
    border-radius: 0; /* Supprime les coins arrondis pour des coins carrés */
    background-color: #fff;
    -webkit-appearance: none;  /* Supprime le style par défaut pour les navigateurs WebKit */
    -moz-appearance: none;     /* Supprime le style par défaut pour Firefox */
    appearance: none;          /* Supprime le style par défaut pour tous les navigateurs */
    outline: none;             /* Supprime le contour par défaut */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="gray" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
}


.country-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.country-select-container::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .country-select-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .country-select-container {
        width: 100%;
    }
}
