html {
    height: 100%;
}

body {
    background-color: rgb(30, 31, 41);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content {
    flex: 1 0 auto;
}

.navbar {
    background-color: rgb(47, 49, 66) !important;
}

.navbar a {
    color: white;
}

.navbar a:hover {
    color: rgb(80, 185, 255);
}

.nav-item-active {
    border-bottom: 2px solid white;
}

.nav-item-active>a {
    color: rgb(80, 185, 255) !important;
    font-weight: bold;
}

#navLogo {
    height: 40px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    color: white;
}

footer {
    border-top: 2px solid white;
    background-color: rgb(47, 49, 66);
    flex-shrink: 0;
}

#footerLogo {
    width: 100%;
}

.form-control,
.input-group-text,
.form-select {
    background-color: rgb(45, 52, 61);
    color: white;
}

.form-control::placeholder {
    color: rgb(175, 175, 175);
}

.form-select:invalid {
    color: rgb(175, 175, 175);
}

.form-select:invalid option:not(:disabled) {
    color: white
}

.form-control:focus {
    background-color: rgb(45, 52, 61);
    color: white;
}