.flex-container {
    width: 100%;
    height: 80%;
    display: flex;
    display: -webkit-flex;
    /* Safari */
    justify-content: center;
}

.box-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.toolbar-spacer {
    -webkit-box-flex: 1;
    flex-grow: 0.5;
}

.card {
    margin-top: 0.6vh!important;
    width: 100%!important;
}

.my-table>tr>th {
    font-size: 1.05rem;
    color: black;
}

.my-table>tr>td {
    font-size: 1.02rem;
    color: rgba(0, 0, 0, .90);
}

@media (max-width: 600px) {
    .table-margin {
        padding: 0!important;
    }
    .card-top-margin {
        margin-top: 8vh;
    }
    .no-border {
        border: 0!important;
    }
    .search-space-left {
        width: calc( 100vw - 20rem)
    }
    .title {
        font-size: 21px!important;
    }
}

@media (min-width: 601px) {
    .table-margin {
        padding: 0 1rem 1rem 1rem!important;
    }
    .search-space-left {
        -webkit-box-flex: 1;
        flex-grow: 1;
    }
    .title {
        font-size: 24px!important;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(359deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}

.rotating {
    -webkit-animation: rotate 1.5s linear infinite;
    animation: rotate 1.5s linear infinite;
}

.search-space-right {
    -webkit-box-flex: 1;
    flex-grow: 0.4;
}

.search-box {
    width: 21rem;
    padding: 0 0 0 1rem;
    background-color: whitesmoke;
}

#search-container {
    /* height: 7vh; */
    display: flex;
}

#queryInput {
    display: inline-block!important;
    width: 70%!important;
}

#queryButton {
    display: inline-block!important;
    margin-left: 0.2rem;
    width: 25%!important;
    text-align: center;
    min-width: 4rem!important;
    padding: 0 !important;
}

.footer {
    position: absolute;
    bottom: 0px;
    height: 5vh;
    width: 100%;
    line-height: 5vh;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    background-color: white;
}

.footer>span>a {
    color: rgba(0, 0, 0, 0.8);
}