/* Mobile overrides for small screens */
@media (max-width: 576px) {
    /* General button improvements for touch */
    .btn {
        min-height: 44px;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    /* Modal adjustments */
    .modal-xl {
        max-width: 95vw;
    }

    /* Table improvements */
    .table-responsive {
        font-size: 14px;
    }

    /* Form controls */
    .form-control {
        font-size: 16px; /* Prevent zoom */
    }

    /* Preview adjustments */
    .preview-doc {
        height: auto;
        max-height: 150px;
    }

    /* Navigation tabs scrollable */
    .nav-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .nav-tabs .nav-item {
        flex-shrink: 0;
    }
}