.woodType {
  display: inline-block;
  margin-left: 5px;
  font-size: 16px;
  cursor: pointer !important;
  border: solid white 2px;
  height: 34px;
}

.woodType input {
  display: none;
}

.woodType input:checked+label {
  border: solid black 2px;
  display: inline-block;
  height: 34px;
}

.stainType {
  display: inline-block;
  margin-left: 5px;
  font-size: 16px;
  cursor: pointer !important;
  border: solid white 2px;
  height: 34px;
}

.stainType input {
  display: none;
}

.stainType input:checked+label {
  border: solid black 2px;
  display: inline-block;
  height: 34px;
}

.productChoiceName {
  width: 250px;
}

.productChoices {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #7e7e7e;
  border-top: dashed 1px #b2b2b2;
  display: flex;
  flex-wrap: wrap;
}

.separator {
  padding: 0 6px 0 4px;
  font-size: 12px;
  font-weight: 700;
}

.salePrice {
  font-weight: bold;
  color: #7F0B0E;
  margin-left: 8px;
}

.productPrice {
  margin-left: 5px;
}

.heightButton {
  height: 30px;
  width: 70px;
  margin: 4px;
  border: solid 1px #7F0B0E;
  border-radius: 5px;
  color: #7F0B0E;
  text-align: center;
  vertical-align: middle;
  line-height: 30px;
  justify-content: space-between;
  cursor: pointer;
}

/* from chatgpt */
/* Desktop \/ */
@media only screen and (min-width: 1300px) {

  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
  }

  /* Style the tab buttons */
  .tab button {
    background-color: #F5F5F5;
    color: #666666;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 0px 10px 0px;
    transition: 0.3s;
    font-size: 20px;
    text-align: center;
    margin-right: 5px;
    width: 100px;
    border-radius: 10px 10px 0px 0px;
  }

  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #5c080b65;
    color: #F5F5F5;
  }

  /* Set the active tab button */
  .tab button.active {
    background-color: #5C080B;
    color: #F5F5F5;
  }

  .table {
    font-family: Arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }

  .table th,
  .table td {
    border: 1px solid #ddd;
    padding: 8px;
  }

  .table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4CAF50;
    color: white;
  }

  .table tr:nth-child(even) {
    background-color: #f2f2f2;
  }
}

/* Desktop /\ */
/* Mobile  \/ */
@media only screen and (max-width: 1300px) {

  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
  }

  /* Style the tab buttons */
  .tab button {
    background-color: #F5F5F5;
    color: #666666;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 0px 10px 0px;
    transition: 0.3s;
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    margin-top: 25px;
    width: 75px;
    border-radius: 10px 10px 0px 0px;
  }

  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #5c080b65;
    color: #F5F5F5;
  }

  /* Set the active tab button */
  .tab button.active {
    background-color: #5C080B;
    color: #F5F5F5;
  }

  .table {
    font-family: Arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    padding: 5px;
  }

  .table th,
  .table td {
    border: 1px solid #ddd;
    padding: 8px;
  }

  .table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4CAF50;
    color: white;
  }

  .table tr:nth-child(even) {
    background-color: #f2f2f2;
  }
}

/* filters toggle on/off for mobile (refrigeration) */
@media only screen and (max-width: 1300px) {
  #cooling {
    display: block;
  }
  
  .typeImg {
    display: none;
  }

  .filterBtn {
    border: 1px solid #5C080B;
    border-radius: 5px;
    float: right;
    width: 100px;
    height: 20px;
    margin-top: -15px;
    margin-right: 5px;
    padding: 5px;
    text-align: center;
    cursor: pointer;


  }
}

@media only screen and (min-width: 1300px) {
  /* #cooling { removed since menu item changed to #cooling not sure where this was used. File was previously unchanged since 2/24
    display: flex; 
  } */

  .allFiltersDiv {
    display: block;
  }

  .typeImg {
    display: block;
  }

  .filterBtn {
    display: none;
  }
}

.specsTblRow:nth-child(even) {
  background-color: lightgray;
}
.specsTblRow:nth-child(odd) {
  background-color: #f2f2f2;
}

.specsTblCell{
  padding: 5px 10px;
}

.specsTblCell:first-child {
  width: 200px;
  border-right: none;
  border-collapse: collapse;
}
.specsTblCell:last-child {
  width: auto;
  border-left: none;
  border-collapse: collapse;
}

.specsTblHead {
  background-color: #f2f2f2;
  text-align: center;
}

.image-container {
  width: 425px;
  overflow: hidden; /* Ensures the image bar does not overflow horizontally */
}

.main-image {
  width: 100%;
  overflow: hidden; /* Hide any overflowing content within the main image */
}

#productImgBar {
  display: flex;
  justify-content: left;
  margin-top: 10px; /* Adjust the top margin as needed */
}

.ImgBarImgCont {
  margin: 0 5px; /* Adjust the margin between thumbnails as needed */
}

.ImgBarImgCont img {
  width: 60px; /* Adjust the width of the thumbnails as needed */
  height: auto; /* Maintain the aspect ratio */
  cursor: pointer; /* Add pointer cursor to indicate interactivity */
  border: 1px solid #ddd; /* Add a 1px solid border with a light gray color */
}
/* Optional: Highlight the selected thumbnail */
.ImgBarImgCont.selected img {
  border: 2px solid #7F0B0E; /* Change the border color as needed */
}   