:root {

    --color-white: #fff;
    --color-light: rgba(132,139, 200, 0.18);
    --color-dark-variant:#6e6e73;
    --color-background: #f6f6f9;
    --color-background2:#eaeff3;
    --card-border-radius: 2rem;
    --card-padding:.5rem;
    --box-shadow: 0 2rem 3rem var(--color-light);
}

body{
    background:var(--color-background2);
    font-family: "Roboto","Inter", sans-serif;
    height: 2500px;
    animation: fadeInAnimation ease 1.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    
}

main{
    padding-top: 130px;
}
main .container{
    display: flex;
}

main .prebatchprocesses{
    flex:1;
    /*grid-template-columns: 600px;
    grid-template-rows: 600;*/
    /* column-gap: 40px;
    grid-auto-flow: row;
    grid-auto-columns: 635px; */
    max-width: 655px;
    margin-left: 50px;
    padding-bottom: 3rem;
    margin-top: 2rem;
}


main .title{
    margin-bottom: 0%;
}


main .prebatchprocesses table{
    background-color: var(--color-white);
    border-radius: var(--card-border-radius);
    padding: .5rem;
    box-shadow: var(--box-shadow);
    transition: all 300ms ease;
    margin-top: 5px;
    width: 655px;
}
main .prebatchprocesses table:hover{
    box-shadow: none;
}

main table tbody td{
    height: 2.5rem;
    border-bottom: 1px solid var(--color-light);
    color:var(--color-dark-variant) ;
    text-align: left;
}

main table th{
    height: 2.5rem;
    text-align: left;
}

main table tbody tr:last-child td{
    border: none;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}
/*
@media (max-width: 650px){
    .header__content{
        flex-direction: column;
        padding: 15px 0;
        row-gap: 8px;
    }
    .nav__list{
        column-gap: 20px;
    }
    th{
        display:none;
    }
    td{
        display:block;
       
    }
    td:first-child {
        padding-top: 2rem;
    }
    td:last-child {
        padding-bottom: 2rem;
    }
    td::before{
        content: attr(data-cell)": ";
        font-weight: 700;
        text-transform: capitalize;
    }
  }
  */