    /* Réinitialisation des styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    /* Conteneur principal */
    .custom-container {
        max-width: 700px;
        margin: 40px auto;
        padding: 30px;
        background-color: #f9f9f9;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .custom-heading {
        text-align: center;
        margin-bottom: 20px;
        color: #333;
    }

    /* Section des étoiles */
    .star-rating-container {
        display: flex;
        justify-content: center;
        flex-direction: row-reverse; /* Pour permettre de cliquer sur la plus haute note à droite */
        gap: 5px;
    }

    .star-input {
        display: none;
    }

    .star-label {
        cursor: pointer;
        font-size: 2rem;
        color: #cccccc; /* Couleur de l'étoile par défaut */
        transition: color 0.3s ease;
    }

    /* Étoiles sélectionnées ou au survol */
    .star-input:checked ~ .star-label,
    .star-label:hover,
    .star-label:hover ~ .star-label {
        color: #ffcc00; /* Couleur jaune pour les étoiles */
    }

    /* Champs de saisie stylisés */
    .custom-input-group {
        margin-bottom: 15px;
    }

    .custom-label {
        display: block;
        margin-bottom: 8px;
        color: #555;
        font-weight: bold;
    }

    .custom-input, .custom-textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #cccccc;
        border-radius: 5px;
        background-color: #ffffff;
        margin-top: 5px;
        transition: border-color 0.3s ease;
    }

    .custom-input:focus, .custom-textarea:focus {
        border-color: #007bff;
        outline: none;
    }

    /* Bouton stylisé */
    .custom-button-group {
        text-align: center;
        margin-top: 20px;
    }

    .custom-button {
        padding: 12px 25px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 16px;
    }

    .custom-button:hover {
        background-color: #0056b3;
    }
.btn-modern {
        background-color: #007bff;
        color: #ffffff;
        border: none;
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 30px;
        text-transform: uppercase;
        letter-spacing: 0.05rem;
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
    }

    .btn-modern:hover {
        background-color: #0056b3;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-modern-outline {
        background-color: transparent;
        color: #007bff;
        border: 2px solid #007bff;
        padding: 8px 18px;
        font-size: 0.9rem;
        border-radius: 30px;
        text-transform: uppercase;
        letter-spacing: 0.05rem;
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
    }

    .btn-modern-outline:hover {
        background-color: #007bff;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }