* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            color: #333;
            background: #fff;
        }

        .contenu {
            max-width: 900px;
            margin: 10px auto;
            padding: 0 10px;
        }

        .page-title {
            text-align: center;
            color: #6CA6CD;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .results-count {
            text-align: center;
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .filtres-container {
            max-width: 900px;
            margin: 0 auto 10px auto;
            padding: 6px;
            background: #f8f9fa;
            border-radius: 6px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .filtres {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            align-items: center;
        }

        .filtre {
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .filtre label {
            font-weight: bold;
            color: #495057;
            font-size: 13px;
        }

        .filtre select {
            padding: 4px 5px;
            border: 1px solid #ced4da;
            border-radius: 3px;
            font-size: 13px;
            min-width: 150px;
        }

        .figurants-container {
            display: grid;
            grid-template-columns: repeat(10, 1fr);
            gap: 0;
            margin: 10px auto;
            max-width: 1200px;
            padding: 0 10px;
        }

        .figurant-item {
            background: none;
            border: none;
            text-align: center;
            padding: 1px;
            margin: 0;
            position: relative;
        }

        .figurant-item img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            display: block;
            border: none;
            background: transparent;
        }

        .figurant-item .info-text {
            margin-top: 1px;
            line-height: 1;
        }

        .figurant-item h3 {
            margin: 0 0 1px 0;
            font-size: 12px;
            font-weight: normal;
            color: #2c3e50;
        }

        .figurant-item p {
            margin: 0;
            font-size: 11px;
            color: #666;
        }

        .figurant-item a {
            text-decoration: none;
            color: #000;
            display: block;
        }

        .statut-indicator {
            position: absolute;
            top: 3px;
            right: 3px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid white;
            background-color: #FFD700;
        }

        .pagination {
            display: flex;
            justify-content: center;
            gap: 3px;
            margin: 8px auto;
            max-width: 1200px;
        }

        .pagination a {
            padding: 4px 6px;
            text-decoration: none;
            color: #333;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 12px;
        }

        .pagination .active {
            background: #007bff;
            color: white;
            border-color: #007bff;
        }

        .no-results {
            text-align: center;
            color: #666;
            font-style: italic;
            margin: 5px 0;
            grid-column: 1 / -1;
        }

        @media (max-width: 767px) {
            .figurants-container {
                grid-template-columns: repeat(5, 1fr);
            }
            .filtres {
                flex-direction: column;
                gap: 4px;
            }
            .filtre {
                flex-direction: column;
                align-items: stretch;
            }
            .filtre select {
                width: 100%;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .figurants-container {
                grid-template-columns: repeat(8, 1fr);
            }
        }