﻿.app-form-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    border: 1px solid var(--app-brand-color, darkgray);
}
.app-form-section-heading {
    color: var(--app-form-heading-color, black);
    border-bottom: 2px solid var(--app-brand-color, darkgray);
    width:100%;
    margin: 0;
    padding-top: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
}
.app-form-section-subheading {
    color: var(--app-form-subheading-color, black);
    border-bottom: 1px solid var(--app-brand-color, darkgray);
    width:100%;
    margin: 0;
    padding-top: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
}
.app-form-section-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    gap: 10px;
}
.app-form-field-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
}
.app-form-field-group-title {
    border-bottom: 1px solid var(--app-brand-color, darkgray);
    font-weight: 600;
    width: 100%;
    padding: 5px 0 5px 0;
    margin: 0px;
}
.app-form-field-label {
    font-size: 14px;
}
.app-form-field-row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
}
.app-form-buttons {
    display: flex;
    justify-content: flex-end;
    width:100%;
    padding: 10px;
}
.app-form-question {
    width: 100%;
}
.app-form-question-text {
    font-weight: 600;
    padding: 5px 0 5px 0;
}
.app-form-question .e-auto-width {
    width: unset !important;
}
.app-form-question-textarea {
    resize: none;
    width: 100%;
}
.app-form-dialog {
}
.app-form-error {
    color: var(--app-error-color, red);
    font-weight: 600;
}
.app-form-error-container {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
    color: #d32f2f; /* Syncfusion's default error red */
}
