.group-messaging-form {
    max-width: 650px;
    background: #fff;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 1em;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 0.8em 1.5em;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}

button:hover {
    background: #005177;
}

#confirmation {
    text-align: center;
    padding: 1em;
}

#confirmation button {
    margin: 0 0.5em;
}

#result {
    margin-top: 1em;
    padding: 1em;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
} 