html, body {
    font-family: Arial;
    font-size: 15px;
    background-color: black;
}

a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.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 #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}


.scroll-table {
    max-height: calc(100vh - 5rem);
    margin-right: auto;
    overflow-y: auto;
}
.scroll-tablehalf {
    max-height: calc(30vh - 5rem);
    margin-right: auto;
    overflow-y: auto;
}

#members {
    background-color: #212529;
    margin: 0;
    font-family: Arial;
    font-size: 10px;
}

    #members tbody {
        color: antiquewhite;
    }

        #members tbody tr:nth-child(odd) {
            background-color: #31363b;
        }

    #members th, #members td {
        border: 1px solid;
        border-collapse: collapse;
        border-color: #355825;
        vertical-align: bottom;
        padding: 4px 3px 0px 3px;
    }

    #members thead {
        background-color: indianred;
        color: black;
        text-align: center;
        font-size: 12px;
        text-transform: uppercase;
    }

    #members th {
        text-align: center;
    }

    #members tbody tr:hover {
        background-color: #0a417a;
    }

    #members tbody tr:nth-child(odd):hover {
        background-color: #0a417a;
    }

