.elementor-17537 .elementor-element.elementor-element-0b03153{--display:flex;}/* Start custom CSS for html, class: .elementor-element-efe0716 *//* =============================================
   FORMULAIRE DE RECHERCHE - .search-form
   ============================================= */

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.search-form label {
    flex: 1;
    display: flex;
}

.search-form .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.search-form .search-field {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-form .search-field::placeholder {
    color: #999;
}

.search-form .search-field:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.search-form .search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: rgb(122, 182, 18);
    color: #F8F8F8;
    border: 1px solid #7AB612;
    border-radius: 100px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.search-form .search-submit:hover {
    background-color: rgba(122, 182, 18, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-form .search-submit {
        width: 100%;
    }
}/* End custom CSS */