.accordion-header-new {
    background-color: #eee;
    font-size: 20px;
    color: #004080;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: 1px solid #ccc; /* Add border to header */
    outline: none;
    transition: 0.4s;
    position: relative;
    margin-top: 5px; /* Add space between accordions */
}

.title-row::after {
    content: '\002B'; /* Unicode character for "plus" sign (+) */
    font-size: 20px;
    color: #777;
    float: right;
    margin-left: 5px;
    transition: transform 0.4s;
}

.accordion-header-new.active .title-row::after {
    content: "\2212"; /* Unicode character for "minus" sign (-) */
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-row {
    font-weight: bold;
}

.instruction-row {
    font-size: 14px;
    color: #666;
    margin-top: 5px; /* Add spacing for instructions */
}

.instruction-row ul {
    list-style-type: disc;
    margin: 5px 0 0 20px;
    padding: 0;
}

.accordion-body-new {
    padding: 0 18px;
    background-color: white;
    border: 1px solid #ccc; /* Add border to panel */
    border-top: none; /* Remove top border to merge with header */
    overflow: hidden;
    display: none; /* Panels are hidden by default */
}
