.next-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000; /* Ensures it overlays other elements */
}

.prev-button {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 1000; /* Ensures it overlays other elements */
}

.collapse-icon {
    transition: transform 0.3s ease-in-out;
    display: inline-block;
}

[aria-expanded="true"] .collapse-icon {
    transform: rotate(180deg);
}

[aria-expanded="false"] .collapse-icon {
    transform: rotate(0deg);
}