@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap");
@import "src/css/nav.css";
html,
body {
    height: 100%;
    margin: 0;
    background-color: #f9fafc;
    color: #444;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

footer {
    background-color: #fff;
    border-top: 1px solid #d2d6de;
    border-left: 1px solid #d2d6de;
    float: right;
    padding: 10px;
    width: 80%;
}

footer #version {
    float: right;
}

.btn-primary {
    background-color: #1DB6D0;
    border-color: #1DB6D0;
    height: 40px;
}

.btn-primary:hover {
    background-color: #0091a6;
    border-color: #0091a6;
}

.btn-primary:focus {
    background-color: #007485 !important;
    border-color: #007485 !important;
}

.btn-primary:active {
    background-color: #007485 !important;
    border-color: #007485 !important;
}

.box {
    background-color: #fff;
    border-top: 4px solid #00b5cf;
    border-radius: 4px;
    height: 100%;
    min-height: 200px;
    margin-top: 20px;
    margin-bottom: 40px;
    float: left;
    padding: 20px;
    width: 100%;
}

h1 {
    float: left;
}

#search {
    margin-bottom: 20px;
}

#add {
    float: right;
    margin-top: 10px;
    height: 30px;
    padding-top: 4px;
    width: 30px;
}

#add i {
    margin-left: -2px;
}

#spinnerBox {
    display: none;
    text-align: center;
    margin-top: 200px;
}

#spinner {
    height: 100px;
    width: 100px;
}


/*PAGE NAV*/

#pagenav {
    float: left;
    margin-top: 10px;
    width: 100%;
}

#pagenav button {
    border-radius: 0;
}

#pagenav .first {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#pagenav .last {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.selected {
    background-color: #5a6268;
}


/*PAGE NAV END*/

@media only screen and (max-width: 1200px) {
    footer {
        width: 100%;
    }
    #menuToggle {
        margin-left: 25px;
    }
}