html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/favicon.ico');
    mask: url('../images/favicon.ico');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 36px;
    height: 26px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.user-info-bar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #f8f9fa;
    padding: 6px 12px;
    font-size: 0.9rem;
    color: #555;
    text-align: right;
    border-bottom: 1px solid #ccc;
}

.fixed-user-status-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    background-color: #f8f9fa;
    border-top: 1px solid #ccc;
    padding: 4px 12px;
    font-size: 0.85rem;
    color: #333;
    text-align: right;
}

.invalid-field input {
    border: 2px solid red !important;
    background-color: #ffe5e5;
}
.campo-obligatorio input {
    border: 2px solid red !important;
    color: #000;
}

.campo-obligatorio label.dxbs-label {
    color: red !important;
    font-weight: bold;
}

input::placeholder {
    color: red;
    opacity: 0.6;
    font-style: italic;
}
