*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #D8E9A8;
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #4E9F3D;
    text-decoration: none;
}

a:hover {
    color: #D8E9A8;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #1E5128;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4E9F3D;
}

::selection {
    background: #1E512860;
    color: #D8E9A8;
}

.blazor-error-boundary {
    background: #050d05;
    border: 1px solid #1E512840;
    padding: 1rem 1rem 1rem 3.7rem;
    color: #4E9F3D;
    border-radius: 0.5rem;
}

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

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

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

.validation-message {
    color: #ef4444;
    font-size: 0.85rem;
}
