/* Base styles */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
}

.editor-field, .radio-group {
    width: 100%; /* Responsive width */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.radio-group input[type="radio"] {
    margin-right: 5px;
}

.validation-message {
    color: red;
    font-size: 0.75em; /* Smaller font size for validation messages */
}

/* Responsive design adjustments */
@media (min-width: 768px) {
    .editor-field {
        width: 50%; /* Adjust based on preference for larger screens */
    }
}

@media (min-width: 1024px) {
    .editor-field {
        width: 250px; /* Fixed width on very large screens if needed */
    }
}
