
.app-error-page-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}
.app-error-page-image-container {
    padding-right: 15px;
}
.app-error-page-image {
    width: 300px;
}
.app-error-page-text-container {
    flex: 1;
    font-size: 18px;
}

@media (max-width: 768px) {
    .app-error-page-image {
        width: 150px;
    }
    .app-error-page-text-container {
        font-size: 1.25em;
    }
}

.app-error-boundary {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: var(--app-width);
    min-height: 100vh;
}
.app-error-boundary-inner {
    box-sizing: border-box;
    background-color: var(--app-section-inner-background-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px 10px 5px 10px;
    width: var(--app-inner-width);
    margin-left: auto;
    margin-right: auto;
}
.app-error-boundary-title {
    font-weight: 600;
    font-size: 32px;
}
.app-error-boundary-content {
    color: red;
    font-size: 14px;
}

.app-error {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--app-error-color, red);
    font-size: 14px;
}
.app-grid-error {
}
.app-error-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--app-error-color, red);
    font-size: 14px;
}
.app-error-title {
    color: var(--app-error-color, black);
    font-weight: 600;
    font-size: 1.1250rem;
}
.app-error-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.0rem;
}
.app-problem-details {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.0rem;
}
.app-problem-errors {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.0rem;
}
.app-error-member {
    color: var(--app-error-color, black);
    font-size: 1.0rem;
}
.app-validation-summary {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--app-error-color, red);
    font-size: 14px;
}