body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFD700; /* jaune doré */
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-left {
    display: flex;
    align-items: center;
}

.logo {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

.navbar-right a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.navbar-right a:hover {
    text-decoration: underline;
}

.content {
    padding: 30px;
}
