/* Général */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    color: #555;
}

input, textarea {
    /* width: 100%; */
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 15px;
    background-color: #007BFF;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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

.error {
    text-align: center;
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

.logout {
    display: block;
    margin-top: 15px;
    text-align: right;
    color: red;
    text-decoration: none;
}

.logout:hover {
    text-decoration: underline;
}

.text-tools {
    margin-bottom: 10px;
}

.text-tools > button {
    background-color: #007bff;
    color: white;
    border: none;
    margin: 2px;
    padding: 8px 12px;
    margin-right: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.color-tools {
    display: flex;
    gap: 0; /* Aucun espace entre les boutons */
}

.color-tools > button {
    padding: 0px;
    background-color: red;
    color: #fff;
    font-size: 1rem;
    border: 1px solid black;
    border-radius: 0px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

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

th, td {
  border: 1px solid black;
  text-align: center;
  padding: 5px;
}

table {
  border-spacing: 0px;
  border: 1px solid black;
}

li {
  list-style-type: '=> ';
  padding-bottom: 5px;
}