#config-tool-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 30px;
    /*background-color: #f8f8f8;*/
    border-radius: 4px;
    text-align: center;
    min-height: 330px;
}
#config-tool-container button {
  background-color: #21282e;
}
#config-tool-container h3 {
  font-size: 28px;
}
.config-step {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}
.horizontal-row {
  display: flex;
  flex-direction: row;
  width: 100%; /* Adjust as needed */
  overflow: hidden; /* Optional, to ensure content doesn't overflow */
  gap: 20px; /* This adds a 10px gap between the flex items */
  max-height: 400px;
   justify-content: center;
}
.horizontal-row .config-icon {
  width: 160px;
  height: 160px;
  object-fit: contain; /* Optional, for aesthetic */
}
.horizontal-row img {
  flex: 1;
  max-width: 275px!important; /* Prevent images from exceeding the container's width */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Optional, for aesthetic */
  margin: 0px;
  min-width: 0; /* Important for preventing overflow in flex items */
}
.horizontal-row img:hover {
  transform: scale(0.97); /* Shrinks to 94% of original size */
  transition: transform 0.3s ease, filter 0.3s ease;
}
.config-option {
    display: inline-block;
    margin: 10px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.config-option:hover {
    border-color: #007bff;
}

.config-option img {
    width: 100px; /* Adjust as needed */
    height: auto;
    vertical-align: middle;
}

#config-result {
    padding: 20px 30px;
    color: #203638;
    margin-top: 10px;
    margin-bottom: 10px;
}
#config-result h2 {
  color: #eb4023;
}
.config-final-link {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    background-color: #eb4023;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

#start-over {
  padding: 12px 17px;
  border-radius: 5px;
}
.config-final-link:hover {
    background-color: #d6391e;
    color: #FFF;
}
