.chateau-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1em;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.chateau-table thead tr {
    background-color: #4a3728; /* Couleur "Pierre sombre" */
    color: #ffffff;
    text-align: left;
}

.chateau-table th, 
.chateau-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.chateau-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

.chateau-table tbody tr:hover {
    background-color: #f1ebd5; /* Effet parchemin au passage de la souris */
    cursor: default;
}

.chateau-table td:first-child {
    font-weight: bold;
    color: #4a3728;
}