
/* Global Scroll Fix - Prevent Double Scrolls */
html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    max-height: none !important;
}

body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
}

/* Remove fixed heights from containers */
.container,
.container-fluid,
.row,
main,
section {
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    overflow: visible !important;
}

/* Fix specific elements that might cause scroll issues */
.card,
.card-body,
.modal,
.modal-dialog,
.modal-content {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Ensure sticky elements don't interfere */
.sticky-top {
    position: sticky !important;
    top: 20px !important;
    max-height: calc(100vh - 40px) !important;
    overflow-y: auto !important;
}

/* Fix order confirmation page specifically */
.order-details,
.order-details .container,
.order-details .row,
.order-details .col-lg-8,
.order-details .col-lg-4 {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}
