.product{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding-top: 2rem; */
    margin-bottom: 0rem;
    position: relative;
}


/* CSS for the product section */
.product {
    text-align: center; /* Center align the content */
}

/* CSS for the product table */
.product-table {
    margin-top: 20px;
    /* border-collapse: collapse; */
    width: 100%;
    max-width: 79.7%;
    border: 2px solid #003B4D;
}

.table-heading {
    background-color: #09607A; /* Background color for the heading */
    color: white; /* Text color */
    font-family: Inter; /* Font family */
    font-size: 16px; /* Font size */
    font-weight: 700; /* Font weight */
    line-height: 19.36px; /* Line height */
    text-align: left; /* Text alignment */
    padding: 10px; /* Padding */
}

.left-column, .right-column {
    border: 2px solid #003B4D; /* Border color */
    padding: 10px; /* Padding */
}

.left-column {
    width: 50%; /* Width of the left column */
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.75px;
    text-align: left;
   color: #333333;    

}

.right-column {
    width: 50%; /* Width of the right column */
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.75px;
    text-align: left;
   color: #333333;    

}

.additional-info {
width: 100%;
}

.additional-info p {
   
}



/* CSS for buttons section */
.buttons-section {
    display: flex;
    /* justify-content: space-around; */
    margin-top: 20px;
    gap: 2rem;
  }
  
  .select-menu {
    width: 300px;
    cursor: pointer;
    position: relative;
  }
  
  .select {
    background-color: white;
    padding: 20px;
    color: black;
       font-family: Roboto;
font-size: 14px;
font-weight: 400;
line-height: 16.94px;
text-align: center;

    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid #333333;
  }
  
  .options-list {
    position: absolute;
    width: 100%;
        font-family: Roboto;
    background-color: #f9f9f9;
    border-radius: 6px;
    margin-top: 14px;
    padding: 0 20px;
    max-height: 180px;
    overflow-y: auto;
    -webkit-transition: .4s linear .2s;
    -o-transition: .4s linear .2s;
    transition: .4s linear .2s;
    height: 0;
    z-index: 9999;
  }
  
  .option {
    padding: 8px 0;
   
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
       font-family: Roboto;
font-size: 14px;
font-weight: 400;
line-height: 16.94px;
text-align: center;
text-decoration: none;

  }
  
  .option:hover,
  .option.selected {
    color: #00a8ff;
  }
  
  .options-list::-webkit-scrollbar {
    width: 4px;
    background-color: #eee;
  }
  
  .options-list::-webkit-scrollbar-thumb {
    background-color: #00a8ff;
  }
  
  .options-list.active {
    height: 160px;
  }
  

  .product-img-wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-img{
    width: 100%;
    max-width: 80%;
  }


@media screen and (max-width: 768px) {
    .left-column, .right-column {
        /* display: block; Display columns as block elements */
        width: 94%; /* Make columns full width */
    }

    .buttons-section{
      flex-direction: column;
    align-items: center;
    }

}

