body {
            font-family: Arial, sans-serif;
            background-color: #FBE6E9; /* Light red background */
            margin: 0;
            padding: 20px;
        }
        form {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: auto;
        }
        label {
            display: block;
            margin: 15px 0 5px;
            font-weight: bold;
        }
        input[type="text"],
        input[type="email"],
        input[type="file"],
        select {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        button {
            background-color: #28a745;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: #218838;
        }
        #paymentLink {
            margin-top: 10px;
            color: #007bff;
        }

label[data-required="true"]:after {
    content: "*";
    color: red;
    margin-left: 5px; /* Add some space between the text and the asterisk */
}

.option-text {
    font-weight: normal; /* Ensure that the options are not bold */
}

.required-asterisk {
    color: red;
    margin-left: 5px; /* Add some space between the text and the asterisk */
}
.textarea-style {
    width: 100%; /* Full width */
    max-width: calc(100% - 2px); /* Adjust to match input width */
    padding: 8px; /* Match input padding */
    border: 1px solid #ced4da; /* Match input border color */
    border-radius: 4px; /* Match input border radius */
    font-size: 14px; /* Match input font size */
    font-family: inherit; /* Match the font family of the input */
    height: 38px; /* Match the height of the input field */
    resize: vertical; /* Enable vertical resizing only */
    box-sizing: border-box; /* Include padding and border in width */
}

/* Placeholder styling */
.textarea-style::placeholder {
    color: #6c757d; /* Default placeholder color, adjust if necessary */
    opacity: 1; /* Ensures the placeholder is fully opaque */
    font-size: 14px; /* Match input placeholder font size */
    font-family: inherit; /* Match the font family of the input */
}

#submitButton:disabled {
    background-color: #d3d3d3; /* Light grey background */
    color: #a9a9a9; /* Darker grey text */
    cursor: not-allowed; /* Change cursor to indicate it’s not clickable */
    border: 1px solid #b0b0b0; /* Grey border */
}