/* Styles existants */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Nouveaux styles pour le CAPTCHA */
.captcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.g-recaptcha {
    margin: 0 auto;
}

/* Styles existants conservés */
h1 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
    font-size: 16px;
}

.button-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

#copyButton {
    background-color: #2196F3;
}

#copyButton:hover {
    background-color: #1976D2;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    textarea {
        height: 150px;
    }

    button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}