.custom-accordion-tabs {
    margin-top: 30px;
    margin-bottom: 30px;
}

.accordion-tab {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.accordion-header {
    background-color: #0073aa;
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.accordion-header:hover {
    background-color: #005177;
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: #f1f1f1;
    font-size: 14px;
}

.accordion-header.active {
    background-color: #005177;
}

.custom-addon-associated-products {
    margin-bottom: 20px;
    
}

.custom-addon-associated-products h3 {
    margin-bottom: 10px;
    font-size: 1.25em;
}

.custom-color-box-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    justify-content: flex-start; /* Align items to the left */
    flex-wrap: wrap; /* Ensure the boxes wrap to a new line if space is insufficient */
}

.custom-color-box-list li {
    display: inline-block;list-style-type: none;
}

.custom-color-box {
    display: inline-block;
    width: 40px; /* Set a fixed width */
    height: 40px; /* Set a fixed height */
    border: 1px solid #ccc;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-sizing: border-box; /* Ensure border is included in the box size */
}

.custom-color-box:hover {
    transform: scale(1.1);
}

.custom-color-box.no-color {
    background-color: #f5f5f5;
    border: 1px dashed #ccc;
    cursor: not-allowed;
}