.logo {
    width: 100%;
    max-height: 600px;
    margin: 0 auto 15px;
    display: block;
}

header {
    text-align: center;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fef9f2;
    margin: 0;
    padding: 0;
}

header {
    background: white;
    color: white;
    padding: 15px;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

input, textarea, select, button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    background-color: #d35400;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #e67e22;
}

table.dataTable thead th {
    background-color: #d35400;
    color: white;
}

/* Commentaires lisibles */
table td {
    max-width: 250px;
    word-wrap: break-word;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .container {
        margin: 15px;
        padding: 15px;
    }

    input, textarea, select, button {
        font-size: 16px;
        padding: 12px;
    }

    h1, h2, h3 {
        font-size: 1.2em;
    }

    canvas {
        max-width: 100% !important;
        height: auto !important;
    }

    table.dataTable {
        width: 100% !important;
        font-size: 12px;
    }

    table.dataTable th, table.dataTable td {
        padding: 6px;
    }

    /* Truncate commentaire sur mobile */
    table td:nth-child(12) {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100px;
    }
}

.site-footer {
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
    width: 100%;
}

.footer-logo {
    position: fixed;
    bottom: 10px;
    width: 230px;
    z-index: 999;
}

.footer-logo.left {
    left: 10px;
}

.footer-logo.right {
    right: 10px;
}

@media (max-width: 768px) {
    .footer-logo {
        width: 70px;
        opacity: 0.85;
    }
}
