body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #f4f6fb;
}

/* Conteneur */
.table-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 10px;
}

/* Table */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Lignes */
.custom-table tr {
    border-bottom: 1px solid #eee;
}

/* Titres */
.custom-table th {
    text-align: left;
    padding: 15px;
    width: 20%;
    background: #0A5797;
    color: white;
    font-weight: 600;
	border-bottom: 1px solid #960202;
	color: #FDFCFC;
}

/* Données */
.custom-table td {
    padding: 15px;
    color: #333;
}

/* Hover effet */
.custom-table tr:hover {
    background: #f9f9ff;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 8px 14px;
    background: #930808;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn:hover {
    background: #730910;
}

/* Images */
.photos img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    margin-right: 8px;
    border-radius: 6px;
    transition: transform 0.3s;
}

.photos img:hover {
    transform: scale(1.1);
}

/* Vidéo */
.video {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-table th,
    .custom-table td {
        display: block;
        width: 100%;
    }

    .custom-table th {
        border-bottom: none;
    }

    .custom-table tr {
        margin-bottom: 15px;
        display: block;
        border-bottom: 2px solid #ddd;
    }
}