html, body, header, select {
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
   /* background-color: #f7f7f7; */
}

/* Header styles */
.header_top {
    background-color: #f2f2f2;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-message {
    margin-right: auto;
    margin-left: 20px;
}

.welcome-message span {
    font-size: 14px;
    color: #333;
}

.header-container {
    display: flex;
    align-items: center;
}

.language-select,
.currency-select {
    margin-left: 10px;
}

select {
    padding: 5px;
    border: none;
    border-radius: 3px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
}

/* Optional: Hover styles */
select:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Optional: Focus styles */
select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* le style du Sidebar */
