body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.logo {
    display: block;
    width: 100px; /* Appliquer la même taille du logo que dans l'index */
    height: auto;
    margin: 0 auto 20px;
}

h1 {
    color: #333;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.search-form {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alignement en haut pour être cohérent */
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap; /* Pour que les champs s'ajustent correctement */
}

.form-group {
    flex: 1; /* Chaque champ prendra un espace équitable */
    min-width: 200px; /* Largeur minimale pour chaque champ */
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.button {
    display: inline-block;
    color: #fff;
    background: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}