/* Custom Scrollbar Modal Terms */
#modal-body::-webkit-scrollbar {
    width: 5px;
}

#modal-body::-webkit-scrollbar-track {
    background: #020617;
    border-radius: 4px;
}

#modal-body::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

#modal-body::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* Accordion Smooth Transition */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.accordion-content.open {
    max-height: 300px;
    transition: max-height 0.3s ease-in-out;
}

/* Rotate Arrow Accordion */
.rotate-icon {
    transition: transform 0.3s ease;
}

.rotate-icon.active {
    transform: rotate(180deg);
}