/* Footer styles */
.sticky-footer {
    transition: opacity 0.3s ease;
    width: 100%;
    z-index: 100;
}

.footer-hidden {
    opacity: 0;
    pointer-events: none;
}

.footer-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Ensure the body has enough space for the footer */
.rz-body {
    min-height: calc(100vh - var(--rz-header-height));
    position: relative;
}
