﻿/* StreamPlay – app.css (nur Validierung + Fehler-UI) */

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "Ein Fehler ist aufgetreten."
}

#blazor-error-ui {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #b32121;
    color: white;
    padding: .75rem 1rem;
    text-align: center;
    z-index: 9999;
}

#blazor-error-ui a, #blazor-error-ui .dismiss {
    color: #fff;
    cursor: pointer;
    margin: 0 .5rem;
}