.container {
    display: flex;
    align-items: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 10px;
    max-width: 900px;
    margin: auto;
}
.panda-image {
    width: 300px;
    //height: auto;
    border-radius: 5px;
    margin-right: 20px;
}
.text-balloon {
    position: relative;
    flex-grow: 1;
    background: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}
.text-balloon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px; /* Ajustez cette valeur pour la position exacte */
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 20px solid #f0f0f0; /* La couleur doit correspondre au fond du text-balloon */
    transform: translateY(-50%);
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.button {    
    margin-right: 10px;
    padding: 8px 15px; /* Ruimte binnen de knoppen */
    background-color: #007bff; /* Blauwe achtergrond */
    color: #fff; /* Witte tekstkleur */
    border-radius: 5px; /* Afgeronde hoeken */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Soepele overgang van kleur */
}
.button:hover {
    //background-color: #45a049;
    background-color: #0056b3; /* Donkerder blauw */
}

.question {
    font-size: 1.5em;
    font-weight: bold;
    color: navy;
    text-align: center;
}
p {
    margin-bottom: 15px;
}

/* Styling for question */
.question {
    font-weight: bold;
    color: #0056b3;
}

/* Styling forms */
form {
    //background-color: #ffffff;
    padding: 20px;
    //border-radius: 8px;
    //box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none; /* Disable resizing */
}

/* Responsive design */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: center;
            }
            img {
                width: 50%; /* Plus large sur les petits écrans */
                margin: 0 0 10px 0; /* Marge adaptée */
            }
            .text-balloon::before {
                border-top: 20px solid transparent; /* Flèche dirigée vers le haut */
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
            }

            form {
                padding: 10px;
            }

            input[type="submit"], textarea {
                width: 100%;
            }
        }