body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
}

.app-container {
    display: flex;
    width: 100%;
}

.sidebar {
    width: 250px;
    background-color: #1d1d1d;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.sidebar .logo {
    margin-bottom: 20px;
}

.sidebar .logo img {
    max-width: 100%;
    height: auto;
}

.role-selector {
    margin: 20px 0;
    text-align: center;
}

.role-selector label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

#role {
    padding: 8px 12px;
    font-size: 16px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #333;
    color: white;
    width: 100%;
    max-width: 200px;
    outline: none;
}

#role:hover {
    border-color: #4caf50;
    background-color: #1d1d1d;
    cursor: pointer;
}

#role:focus {
    border-color: #4caf50;
    box-shadow: 0 0 4px #4caf50;
}

#rulesButton {
    margin-top: auto;
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#rulesButton:hover {
    background-color: #45a049;
}

.main-content {
    flex-grow: 1;
    background-color: #2c2c2c;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

main h1 {
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#question {
    font-size: 18px;
    margin: 20px 0;
    text-align: center;
}

#propositions {
    margin-bottom: 20px;
    text-align: left;
}

#propositions li:empty {
    list-style-type: none;
  }
  

#revealButton {
    display: none;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#revealButton:hover {
    background-color: #218838;
}

#reponse {
    margin-top: 20px;
    font-size: 16px;
    color: whitesmoke;
}