/* Style for the body of the widget */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Style for the form container */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

/* Styling for the form header */
h1 {
    text-align: center;
    font-size: 1.5em;
}

/* Styling for input labels */
label {
    font-size: 0.85em;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Styling for input, textarea, and dropdown fields */
input, textarea, select {
    width: calc(100% - 10px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Styling for buttons */
button {
    padding: 6px 15px;
    font-size: 0.85em;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Hover effect for buttons */
button:hover {
    background-color: #0056b3;
}

/* Styling for the payload display section */
.payload-message {
    background-color: #e8e8e8;
    color: #333;
    padding: 10px;
    margin-top: 15px;
    border-radius: 4px;
    font-size: 0.9em;
    word-wrap: break-word;
}