html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #006bb7;
    /* color: #7D7AA2; Updated to a light purple color */
}

.btn-primary {
    color: #fff;
    background-color: #5E548E; /* Updated to a mid-tone purple */
    border-color: #4F3A65; /* Updated to a darker purple */
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #B198DC; /* Updated to a bright purple */
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050; /* Kept green for validity indication */
}

.invalid {
    outline: 1px solid #e50000; /* Kept red for error indication */
}

.validation-message {
    color: #e50000; /* Kept red for error messages */
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,...) no-repeat 1rem/1.8rem, #7B2CBF; /* Updated to a deep purple */
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred.";
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292; /* Kept grey for a neutral look */
}
