body{
    font-size: 2vh;
    font-family: Arial, Helvetica, sans-serif;    
    height: 100vh;
    margin: 0; 
    background-image: url("./images/background2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;    
    justify-content: center;
    flex-direction: column;
}

.main-container{
    max-width: 1000px;
    height: 80%;
    width: 80%;
    background-color:rgb(225,225,225);
    border-radius: 1rem;
    padding: 2rem;
    flex-direction: column;    
    box-shadow: 0px 0px 8px #888888;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(0.5em);
    box-sizing: content-box;
}

.shared-container{
    height: 50%;
    width: 100%;
    display: flex;
    box-sizing: content-box;
}

.inputs{
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plot-div{
    width: 70%;
    height: 100%;    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.input_row{
    display: flex;
    flex-direction: row;
}

.input_row{
    height: 2rem;
    padding: 0.5rem;
}

.label{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    width: 5rem;
}

input{    
    flex-grow: 1;
}

button{    
    background-color: rgb(100,100,200);
    border: none;
    cursor: pointer;
    box-shadow: 5px;
    border-radius: 3px;
    height: 2rem;
    transition: hover 0.5;
    color: white;
    margin: 0.5rem;    
}

.result{
    display: flex;
    align-items: center;
    height: 2rem;
    margin: 0.5rem;   
}

button:hover{
    background-color: rgb(140,140,240);
}

button:active{
    background-color: rgb(180,180,280);
}

.table-container{
    height: 48%;
    margin-top: 2%;    
    overflow-x: hidden;
    overflow-y: scroll;
    border: 0.1rem solid rgb(200,200,200);
    background-color: rgb(255,255,255, 0.5);
    box-sizing: content-box;
}

table{    
    width: 100%;
}

th, td {
    text-align: center;
    border-bottom: 1px solid rgb(190,190,255);
}

@media (max-width: 900px) or (orientation: portrait){
    
    .shared-container{
        height: 65%;
        flex-direction: column;
    }

    .inputs{
        width: 100%;
        height: 50%;        
    }

    .plot-div{
        height: 50%;
        width: 100%;
    }

    .table-container{
        height: 35%;
    }
}