.trad-accordion-icon {
    font-size: 20px; 
    width: auto;
    vertical-align: middle; /* Align the icon with the text */
    margin-left: 10px; /* Add some spacing between the icon and the text */
}

.trad-accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px; /* Customize title font size */
    font-weight: bold;
    padding: 10px;
}

.trad-accordion {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    margin-bottom: 0px;
    cursor: pointer;
}

.trad-accordion-content {
    padding: 10px;
    display: none;
    background-color: #ffffff;
    border-top: none;
}

.trad-accordion-content.is-open {
    display: block; /* Show content when open */
}




