html, body {
    background-color: #000000;
    color: #00ff00;
    font-family: 'Courier New', Courier, 'VT323', monospace;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal {
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
}

.typing {
    overflow: hidden;
    border-right: 2px solid #00ff00;
    white-space: nowrap;
    animation: typing 2s steps(24) forwards, blink 0.7s step-end infinite;
    display: inline-block;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #00ff00; }
}

a, .btn-link {
    color: #00ff00;
}

.btn-primary {
    color: #000;
    background-color: #00ff00;
    border-color: #00ff00;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem #00ff00, 0 0 0 0.25rem #00ff00;
}

.blazor-error-boundary {
    background: #000;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 1rem;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #00ff00;
}

#blazor-error-ui {
    background: #000;
    color: #00ff00;
    border: 1px solid #00ff00;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    box-sizing: border-box;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        color: #00ff00;
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

    #blazor-error-ui .reload {
        color: #00ff00;
    }