.main-page-div{
    margin-top: 30px;
    margin-bottom: 100px;
    font-family: sans-serif;
    width: 100%;
}

.page-input > form{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#inputTable{
    border: 1px dotted #ab5555;
    text-align: center;
}

.page-input > form > table > tbody > tr{
    height: 50px;
}

.page-input > form > table > tbody > tr > td > select{
    font-size: 15px;
    width: 200px;
    padding: 5px;
}

.page-input > form > table > tbody > tr > td > input[type='text']{
    font-size: 15px;
    width: 400px;
    padding: 5px;
}

.page-input > form > table > tbody > tr > td > input[type='number']{
    font-size: 15px;
    width: 200px;
    padding: 5px;
}

.page-input > form > table > tbody > tr > td > input[type='button'], .page-input > form > table > tbody > tr > td > input[type='reset']{
    font-size: 15px;
    width: 150px;
    padding: 5px;
    margin-left: 30px;
    background-color: black;
    color: aliceblue;
}

.page-input > form > table > tbody > tr > td > input[type='button']:hover, .page-input > form > table > tbody > tr > td > input[type='reset']:hover{
    background-color: blueviolet;
    cursor: pointer;
}


.page-input{
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}

.page-input h3{
    margin-bottom: 35px;
    font-size: x-large;
    color: #2c396b;
    font-weight: 400;
    text-align: center;
}

.page-input b{
    font-weight: 500;
}

.page-input a{
    text-decoration: none;
}

.page-input a b{
    color: blue;
}

.page-input a b:hover{
    color: rgb(19, 134, 134);
}

.page-input input{
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 16px; 
    cursor: pointer;
}

th, td {
    padding: 10px;
}


.progressBar{
    display: flex;
    justify-content: center;
    margin-top: 70px;
    flex-direction: column;
    align-items: center;
}

.result-div{
    display: flex; 
    flex-direction: column; 
    width: 65%; 
    margin-left: auto; 
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 100px;
}

.result-div-above{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.result-div-above table input[type='number']{
    width: 100px;
}

.custom-table-filters{
    display: flex;
}

.top-row, .bottom-row{
    display: flex;
    justify-content: space-between;
}

.highlight{
    background-color: #f56942 !important;
}