body {
    font-family: sans-serif;
    padding: 20px;
}

.header {
    background-color: #00c060;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: 20px;
}

.btn-supprimer {
    background-color: red;
    color: white;
}

.btn-modifier {
    background-color: #e67e22;
    color: white;
}

.btn-modifier.disabled,
.btn-supprimer.disabled {
    background-color: grey;
    cursor: not-allowed;
}

#formulaire {
    margin-bottom: 20px;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#stats span {
    color: orange;
}

pre {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
}