/* Styles for the custom table and description container */
.custom-description-container {
    display: flex !important;
    align-items: flex-start; /* This makes sure both columns start at the same vertical position */
    gap: 40px; /* Space between the table and the description */
    font-family: 'ROBOTO';
}

/* Styles for the custom table container */
.custom-table-container {
    flex: 0 0 40%; /* This means the table will take up 40% of the available width */
    max-width: 40%; /* Ensure it doesn't stretch beyond 40% */
    
}

/* Styles for the product description */
.product-description {
    flex: 1; /* This means the description will take up the remaining space */
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

/* Other table styling... */
.custom-table-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #36a047;
    color: white;
}

table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
}



.product-description table:before {
    content: "Product Specifications";
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

table tr:hover {
    background-color: #E0F5E4;
    color: #031B4E;
    
}