.centered-container {
    margin: 50px auto;
    width: 75%;
    align-items: center;
    font-family: 'Roboto';
}

.header{
    display:flex;
    justify-content:space-around;
    padding:10px;
}

.header div{
    width:120px;
    text-align:center;
}

.product{
    overflow: scroll; /* Hide scrollbars */
    max-height: 400px;
}
::-webkit-scrollbar {
    display: none;
}

.productRow {
    border: 1px solid rgb(199, 199, 199); /* Added row border */
    display:flex;
    justify-content:space-around;
}

.productRow div{
    width:120px;
    text-align:center;
}

.tableHeader {
    border-radius:0px 0px 0px 0px;
    background-image: radial-gradient(farthest-corner at 1200px 1200px, #C0D6FF 0%, #0038a7 70%, #043599  100%);
    text-align: center;
    color: white;
    padding: 15px; 
    margin: 0;
    display:flex;
    flex-direction:column;
    gap:0px;
}

.tableHeader p{
    margin:0;
}

.tableHeader h3{
    font-size:46.5px;
    margin:0;
    font-weight:500;

}

.seriesMotorsHeading{
    position: sticky;
    top: 0px;
    z-index: 8;
}
.regenMotorsHeading{
    position: sticky;
    top: 0px;
    z-index: 9;
}
.sectionHeader {
    border: 1px solid black; 
    background-color:black;
    color:white;
    padding:3px;
    font-size:18px;

}

.tableKeyNote{
    color: black;
}

.txtRed16 {
    font-size: 16px;
    margin: 0;
    color: red;
}

.txtRed16:visited {
    color: inherit; /* Change to desired color if needed */
}

.tablePart {
    color: black;
}

.productRow{
    display:flex;
    justify-content:space-around;
    padding:10px;
}


@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 768px) {
    .tableHeader{
        padding:17px;
    }
    .tableHeader h3{
        font-size:28px;
    
    }

    .centered-container{
        width:85%;
        margin:30px;
        margin-left: auto;
        margin-right: auto;
    }
    .tableHeader {

        border-radius:0px;
        background-image: radial-gradient(farthest-corner at 1200px 1200px, #000000 0%, #000000 70%, #000000 100%);
    }
    .sectionHeader {
        background-color:#0038a7;
    }
    
    .header div{
        font-size:13px;
    }

    .header{
        padding:5px;
    }
    .productRow div{
        width:100%;
        font-size:13px;
    }
    .productRow{
        padding:5px;
    }
}
@media screen and (max-width: 425px) {
    
    
}