.container h1{
    text-align: center;
}

.container h1 {
    text-align: center;
}
* {
    box-sizing: border-box;
}




.product-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    /* Gap between boxes */
    height: auto;
    margin: 7vw;
    border-radius: 10px;
    box-shadow: 1px 0px 20px 6px rgba(0, 0, 0, 0.2);
}

.product-box img {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    
}

.product-box .description {
    padding: 15px;
    margin: 15px;
    background-color: #dfdfdf79;
    /* Light background */
    flex: 1;
    /* Allow description to fill remaining space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 10px;
    /* position: relative; */
}

.product-box .description h3 {
    margin-bottom: 10px;
}

/* Alternate layout: flip content for even boxes */
.product-box.reverse {
    flex-direction: row-reverse;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
}

th, td {
    border: 5px solid #e0e0e0;
    border-radius: 10px;

    padding: 8px;
    text-align: left;
}

th {
    background-color: #fbfbfb;
    font-weight: bold;
    text-align: center;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e9ecef;
}

.product-box img {
    max-width: auto;
    height: 300px;
    object-fit: cover;
}





/* Responsive Styles */
@media (max-width: 768px) {
    .product-box {
        flex-direction: column;
        height: auto;
        width: auto;
        /* Allow height to adjust */
    }

    .product-box img {
        width: 100%;
        /* Full width for smaller screens */
        height: auto;
        /* Maintain aspect ratio */
        margin-top: 25px;
    }

    .product-box .description {
        font-size: 20px;
    }

    .product-box.reverse {
        flex-direction: column;
        /* Stacks like normal */
    }
}