/* Styles standardisés pour le header et la barre de recherche */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #1a3a5f !important; /* Ajout de !important pour éviter les écrasements */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    margin-right: 15px;
}

.message-icon {
    display: block;
}

.message-icon img {
    width: 24px;
    height: 24px;
}

/* Styles pour la barre de recherche du header */
.header-search-form {
    display: flex;
    width: 100%;
    max-width: 800px;
    margin: 10px auto;
    padding: 0 20px;
}

.search-bar {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}

.search-bar:focus {
    border-color: #1a3a5f;
    box-shadow: 0 0 0 2px rgba(26, 58, 95, 0.2);
}

/* Style pour les petits écrans */
@media (max-width: 768px) {
    .header-search-form {
        padding: 0 10px;
    }
}
