.tab-parts {
    overflow: hidden;
    display: flex;
    width: 100%;
  }
  
  .tablink-parts {
    background-color: #f1f1f1; 
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 25%;
  }
  
  .tablink-parts:hover {
    background-color: #ddd;
  }
  
  .tablink-parts.active {
    color: white; 
  }
  
  .tabcontent-parts {
    display: none;
    padding: 6px 12px;
    border-top: none;
  }
  
  .vertical-tab-container {
    display: flex;
    margin-top: 20px;
    border-radius: 20px;
  }
  
  .vertical-tab {
    float: left;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 25%;
    height: 650px; 
    overflow-y: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .vertical-tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 22px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    height: auto;
    padding: 10px;

  }
  
  .vertical-tab button:hover {
    background-color: #ddd;
  }
  
  .vertical-tab button.active {
    background-color: #ccc;
  }
  
  .vertical-tabcontent-container {
    float: left;
    width: 75%;
    height: 650px;
    border: 1px solid #ccc;
    border-left: none;
    overflow-y: auto;
  }
  
  .vertical-tabcontent.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vertical-tabcontent h3 {
    font-weight: bold;
    color: #51463e;
}

.vertical-tabcontent img {
    width: 80%;
    max-width: 100%;
    height: auto;
}