.custom-accordion {
    margin-bottom: 1rem;
    width: 100%;
}

.custom-accordion-item {
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.custom-accordion-item:first-of-type {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.custom-accordion-item:last-of-type {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    margin-bottom: 0;
}

.custom-accordion-button {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #212529;
    text-align: left;
    background-color: #f8f9fa;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    margin: 0;
}

.custom-accordion-button:hover {
    background-color: #e9ecef;
}

.custom-accordion-item:last-of-type .custom-accordion-button:not([aria-expanded="true"]) {
    border-bottom: none;
}

.custom-accordion-button:focus {
    outline: none;
}

.custom-accordion-button::after {
    content: '+';
    font-weight: bold;
    transition: transform 0.3s ease;
}

.custom-accordion-button[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(180deg);
}


.custom-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: white;
}

.custom-accordion-content.is-open {
    max-height: 1000px;
}