/* Custom styles for Dandomain custom fields to match Tailwind theme */
fieldset[class*="m-custom-data-id-"] {
    margin-bottom: 1rem;
}

fieldset[class*="m-custom-data-id-"] .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem; /* text-sm */
    font-weight: 700; /* font-bold */
    color: #374151; /* text-gray-700 */
}

fieldset[class*="m-custom-data-id-"] .form-input {
    background-color: #ffffff; /* bg-white */
    border: 1px solid #d1d5db; /* border border-gray-300 */
    border-radius: 0.25rem; /* rounded */
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    height: 2.5rem; /* h-10 */
    font-size: 0.875rem; /* text-sm */
}

/* Specific overrides for medium screens and up, matching md:h-12 */
@media (min-width: 768px) {
    fieldset[class*="m-custom-data-id-"] .form-input {
        height: 3rem; /* h-12 */
    }
}
