
.acc-wrapper {
    width: 100%;
}
.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: var(--primary-color);
    padding: 1rem;
    font-weight: 700;
    margin-top: 0;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    user-select: none;
    border-radius: 0;
    position: relative;
    outline: 0 none;
    border-bottom: 0 none;
    border-top: 0 none;
    border-right: 0 none;
    border-left: 0 none;
}

.acc-header:first-child {
    margin-top: 0;
    border-top: 1px solid var(--border-color);
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

.acc-product-sku {
    font-size: 18px;
    color: var(--border-color);
    margin-right: 42px;
    max-width: 250px;
}

.acc-expand-icon {
    background-color: transparent;
}


.expand-icon {
    border: none;               /* Remove the button border */
    background: none;                   /* Remove any padding */
    margin: 0;                  /* Remove any margin */
    cursor: pointer;            /* Add a pointer cursor for interaction */
    color: #007bff;             /* Set the icon color (adjust as needed) */
    font-size: 18px;            /* Adjust the icon size as needed */
    line-height: 1;             /* Adjust the line height as needed */
}

.expand-icon .ui-button {
    background: transparent !important;
    border: none;
}

.parts-image{
    width:100%;
    max-width: 1200px;
    display: flex;
    justify-content: center; /* Horizontally center the image */
    align-items: center;
    margin: 0 auto;
}

@media (max-width: 768px) {
   .acc-product-sku {
       font-size: 14px;
       margin-bottom: 12px;
   }

   .acc-product-title {
       font-size: 18px;
   }
}