/* --- Genenral and Resets --- */
body {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

html, body, p, span, a, buttton, div, td, b, h1, h2, h3, h4, h5s, h6 {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.Lato {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.Roboto {
    font-family: 'Roboto Condensed', sans-serif;
}

h1 {
    font-size: 36px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 14px;
}
h6 {
    font-size: 12px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

p,span, b {
    font-size: 14px;
}

a, .btn-link {
    color: #0366d6;
}

.btn-frc {
    color: #fff;
    background-color: #004762;
    border-color: #004762;
}

    .btn-frc:hover {
        color: #fff;
        background-color: #de9016;
    }

.btn-red {
    color: #fff;
    background-color: #9D242B;
    border-color: #9D242B;
}

    .btn-red:hover {
        background-color: #9D242B;
        color: #fff;
    }

.btn-close {
    cursor: pointer;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

#show-admin-btn {
    display: none;
}

/* --- Header and Nav and Footer ---*/
#header {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 85px;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
    margin-top: 15px;
}

#nav {
    background-color: #004762;
    color: #fff;
}

.nav-link {
    color: #fff !important;
}

    .nav-link:hover {
        color: #de9016 !important;
    }

#footer {
    background-color: #efefef;
    height: 100%;
    min-height: 85px;
    padding-top: 30px;
    width: 100%;
}

#footer-link {
    color: #de9016;
}

#footer-link-div {
    text-align: left;
}

/* File Upload Drag-and-Drop */
.drag-drop-zone {
    border: 3px dashed #004762;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
    color: #aeaeae;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 1.5rem 0 1rem 0;
    position: relative;
}

    .drag-drop-zone:hover {
        background-color: #f5f5f5;
    }

    .drag-drop-zone input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

/* For iFrame of Tableau Wallboard */
#tableauFrame {
    border: none;
    width: 100%;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    #header {
        flex-direction: row;
        margin-bottom: 0;
        margin-top: 0;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #footer-link-div {
        text-align: right;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}