/* Conteneurs */
        .profil-container {
            width: 60%;
            margin: 20px auto 0;
            text-align: center;
        }
        .profil-infos {
            width: 60%;
            margin: 0 auto;
            text-align: center;
            background: #f9f9f9;
            padding: 0;
            border-radius: 8px;
            line-height: 1;
        }
        .profil-photo {
            max-width: 250px;
            height: auto;
            width: auto;
            display: inline-block;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        /* Boutons */
        .buttons-container {
            width: 60%;
            margin: 5px auto;
            text-align: center;
        }
        .action-button {
            display: inline-block;
            padding: 5px 10px;
            margin: 0 3px;
            background: #007BFF;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 13px;
        }
        .action-button:hover {
            background: #0056b3;
        }
        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            display: none;
            justify-content: center;
            align-items: center;
        }
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            text-align: center;
        }
        .lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            display: inline-block;
            border-radius: 5px;
        }
        .lightbox-close {
            position: absolute;
            top: 15px;
            right: 20px;
            color: white;
            font-size: 35px;
            background: none;
            border: none;
            cursor: pointer;
        }
        .lightbox-prev, .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 25px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 50%;
        }
        .lightbox-prev {
            left: 10px;
        }
        .lightbox-next {
            right: 10px;
        }
        /* Style des infos */
        .info-section {
            margin: 0;
            padding: 0;
        }
        .info-section h3 {
            color: #007BFF;
            margin: 0;
            padding: 2px 0;
            font-size: 14px;
            border-bottom: none;
        }
        .info-grid {
            display: block;
        }
        .info-item {
            margin: 0;
            padding: 0;
            display: block;
            text-align: center;
        }
        .info-label {
            font-weight: bold;
            color: #555;
            margin-right: 5px;
        }
        .info-value {
            color: #333;
        }
        .oui-non {
            color: #007BFF;
            font-weight: bold;
        }