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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    padding: 10px 20px;
    color: white;
}

.nav-links {
    display: flex;
    gap: 10px;
}

/* Style des boutons uniformisé */
.nav-links button {
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.nav-links .active {
    background: #888;
}

.auth-buttons {
    display: flex;
    align-items: center; 
    gap: 10px;
}

/* Style des boutons de connexion uniformisé */
.auth-buttons button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #333;
    color: white;
}

.auth-buttons .register {
    background: #00aaff;
    color: white;
}

.auth-buttons img {
    width: 35px;
    height: 35px; 
    object-fit: cover; 
    border-radius: 50%;
}

.container {
    display: flex;
    gap: 10px;
    padding: 20px;
}

.card {
    flex: 1;
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 300px;
    max-width: 200px;
    background: lightgray;
    cursor: pointer;
}

/* Style global des boutons */
button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}