﻿@media (max-width: 576px) {
    .custom-padding {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Evita que los elementos se rompan entre páginas en la exportación a PDF */
.pdf-break-avoid {
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important; /* Compatibilidad con navegadores basados en WebKit (Chrome, Safari) */
    break-inside: avoid !important; /* Estándar CSS */
}

/* MOBILE ONLY */
@media (max-width: 767.98px) {
    .mobile-order-panel {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100% - 64px);
        z-index: 1040;
        /* CLAVE */
        transform: translateY(calc(100% - 64px));
        transition: transform 0.3s ease;
    }

        .mobile-order-panel.show {
            transform: translateY(0);
        }
}

