: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);
}

.logo img {
    vertical-align: middle; /* Aligns the image to the middle of the text */
}
  
.logo {
line-height: normal; /* Resets any specific line-height you may have */
display: inline-block; /* Allows vertical alignment to work */
}

#landingMessage {

    padding-left: 1rem ;
    padding-right: 1rem;
    width: auto;
}


body{
    background:var(--color-background2);
    font-family: "Roboto","Inter", sans-serif;
    height: auto;
    animation: fadeInAnimation ease 1.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

main{
    padding-top: 5rem;
}
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 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;
} */

#tableData {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* Ensures tables align to the top of the container */
    gap: 10px; /* Adjust the gap between tables */
}

.table-container {
    box-sizing: border-box; /* Includes padding and borders in the width */
    margin-right: 5px; /* This will create space to the right of each table */
    margin-top: 2rem;
    margin-left: 1rem;
}

main table {
    background-color: var(--color-white);
    border-radius: var(--card-border-radius);
    padding: 1rem;
    box-shadow: var(--box-shadow);
    transition: all 300ms ease;
    width: 655px; /* Fixed width as you have defined */
}

main 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;
}

main table tbody td.status-Started {
    color: blue;
}
  
main table tbody td.status-Completed {
    color: green;
}
  
main table tbody td.status-Failed {
    color: red;
}
  
main table tbody td.status-Warning {
    color: orange;
}
main .container {
    display: flex;
    justify-content:center;
    margin-right: 5rem;
}
#currentEnvironment {

    font-weight: bold; 
    font-size: 1.4rem;
    margin-top: 2rem;

}

  


@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;
    }
  }
  */