/* Style général */
body {
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

h1{
    text-align: center;
}

li{
    list-style-type: none;
    margin: 0;
}

a{
    text-decoration: none;
    display: block;
    color: black;
    border: solid black 1px;
    padding: 10px 0;
    margin: 10px 5px;
    border-radius: 5px;
    width: 200px;
    text-align: center;
}

ul{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}


form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    
}

table {
    width: 80%;
    max-width: 600px;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 10px 20px;
    text-align: left;
}

th {
    background: #eee;
}

tr {
    border-bottom: 1px solid #ddd;
}

tr:last-child {
    border-bottom: none;
}

a {
    text-decoration: none;
    color: #007bff;
    margin-right: 10px;
}

a.delete {
    color: red;
}

a:hover {
    text-decoration: underline;
}




form {
    width: 80%;
    max-width: 400px;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, select, textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: ease 0.3s;
}

input[type="submit"]:hover {
    background: #007bff;
    color: white;
    cursor: pointer;
    transition: ease 0.3s;
}

legend {
    font-weight: bold;
    font-size: 18px;
    padding: 0 10px;
    color: #333;
}