.home {
    position: relative;
    width: 100%;
    height: 100vh;
}

.home::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/background.jpg);
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.7);
    background-repeat: no-repeat;
}

/* disable y scroll and x scroll */
body {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}


.transluscent, input{
    background: none;
    border: none;
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1)!important;
}

.login-button{
    background-color: rgba(255, 255, 255, 0.1)!important;
    border: 1px solid white;
    color: white;
}

nav, .navbar {
    background: none;
    background-color: rgba(255, 255, 255, 0.1)!important;
    border-radius: 1vw;
    margin: 0.5vw;
}

.hover-row:hover{
    background-color: rgba(255, 255, 255, 0.1)!important;
}

.tablerow {
    background-color: rgba(255, 255, 255, 0)!important;
    border-radius: 1vw;
    margin: 0.5vw;
    text-align: center;
}

#Table_info, #Table_filter {
    color: white !important;
}

.paginate_button {
    background-color: rgba(255, 255, 255, 0.5)!important;
    color: rgb(255, 255, 255) !important;
}

#Table_previous, #Table_next {
    background-color: rgba(255, 255, 255, 0.5)!important;
    color: rgb(255, 255, 255) !important;
}

#model {
    background-color: rgba(255, 255, 255, 0)!important;
    color: rgb(255, 255, 255) !important;
    border: transparent !important;
}

.image_history {
    max-height: 10vh ;
    max-width: 100%;
    height: auto;
    width: auto;
}

.table-responsive {
    overflow-x: auto !important;
}
.table_title {
    text-align: center;
}

/* set table width to 10vw is screen is above 700px */
@media (min-width: 700px) {
    .table-responsive {
        width: 40vw !important;
    }
}
