/* --- Altares Custom: Gecorrigeerd naar Blauw --- */

/* De officiële Altares bovenrand accent-klasse */
.altares-border-top {
    border-top: 6px solid #002D72 !important; /* Gebruik hier het nieuwe blauw! */
}

/* Topbar Styling: Van antraciet naar het diepe Altares Blauw */
.AltaresBackoffice-topbar {
    background-color: #FFFFFF;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00A9E0; /* Lichtblauw accent i.p.v. rood */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Links en knoppen in de topbar */
.btn-link-AltaresBackoffice {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease-in-out;
}

    .btn-link-AltaresBackoffice:hover {
        color: #00A9E0; /* Lichtblauwe hover */
    }

/* De primaire Altares knop: Nu BLAUW */
.btn-AltaresBackoffice-sm {
    background-color: #002D72;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 0;
    border: 1px solid #00A9E0;
    padding: 10px 20px;
    transition: all 0.2s;
}

    .btn-AltaresBackoffice-sm:hover {
        background-color: #00A9E0;
        color: white;
    }

/* --- Validatie: Rood mag hier blijven, want rood = fout --- */
.invalid {
    outline: 1px solid #D32F2F;
}

.validation-message {
    color: #D32F2F;
    font-weight: 500;
}

/* Blazor Error Boundary: Gebruik een serieuzer rood, niet het felle rood */
.blazor-error-boundary {
    background-color: #D32F2F;
    color: white;
}
