/* Style général de la page */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    background-color: #fff;
}

.container {
    display: flex;
    max-width: 1600px;
    height: 80vh;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.column {
    padding: 20px;
    box-sizing: border-box;
}

.left-column {
    width: 200px; /* Largeur fixe de la colonne gauche */
    background-color: #333;
    color: white;
}

.right-column {
    flex-grow: 1; /* La colonne droite prend tout l'espace restant */
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Boutons dans la colonne de gauche */
.button {
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 10px;
    background-color: #555;
    border: none;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}

.button:hover {
    background-color: #777;
}

.right-buttons {
    display: flex;
    gap: 10px; /* Espacement entre les boutons */
    width: 80%; /* Largeur des boutons égale à la barre */
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Style des boutons */
.small-button {
    padding: 15px;
    background-color: #555;
    border: none;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    flex-grow: 1; /* Les boutons prennent tout l'espace disponible */
}

.small-button:hover {
    background-color: #777;
}

/* Séparateur horizontal */
.separator {
    width: 80%; /* Largeur de la barre horizontale */
    height: 2px;
    background-color: #aaa;
    margin-top: 20px;
    align-self: center; /* Centre la barre horizontalement */
}
