/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #ffffff;
    padding: 2.5em;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 1em;
    color: #333333;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 0.5em;
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.7em;
    margin-bottom: 1em;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
}

.select-size {
    width: 100%;
}

.select-size2 {
    width: 97%;
}

button {
    width: 100%;
    padding: 0.7em;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

textarea {
    height: 100px;
    resize: none;
}

#user_type {
    margin-bottom: 1em;
    display: flex;
    gap: 1em;
    align-items: center;
}

#user_type label {
    font-size: 14px;
}

.role-menu {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.role-section {
    background-color: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 8px;
    padding: 10px;
    flex: 1;
}

.role-section h3 {
    background-color: #66bb6a;
    color: white;
    padding: 10px;
    margin: -10px -10px 10px -10px;
    border-radius: 8px 8px 0 0;
    font-size: 18px;
}

.role-section ul {
    list-style-type: none;
    padding: 0;
}

.role-section li {
    margin: 10px 0;
}

.role-section a {
    text-decoration: none;
    color: #2e7d32;
    font-weight: bold;
}

.role-section a:hover {
    text-decoration: underline;
    color: #1b5e20;
}

.container_accueil {
    width: 90%;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.table-container {
    overflow-x: auto;
    padding: 10px;
    margin: 20px 0;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.tableau-evaluation {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.tableau-evaluation th,
.tableau-evaluation td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.tableau-evaluation th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

.tableau-evaluation tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tableau-evaluation tr:hover {
    background-color: #f1f1f1;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.form-container {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}