/* styles.css */

/* Styles de base communs */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Styles du header commun */
header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #d1e0e0;
    color: #333;
}

header img {
    height: 50px;
    margin-right: 20px;
}

header h1 {
    flex-grow: 1;
    font-size: 2em;
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right .btn {
    margin-right: 10px;
}

.header-right .user-info {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Styles des boutons communs */
.btn {
    background-color: #007bff;
    padding: 10px 20px;
    margin: 10px 5px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Styles du footer commun */
footer {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
}

.legal {
    margin-left: 20px;
}

.legal a {
    color: #007bff;
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}
