﻿/* ============================================================================
   Search Orders page
   ----------------------------------------------------------------------------
   Sticky search form, bounded results table, short-display adjustment, and
   tablet/mobile fallback.

   Source: Pasted text(20260903-154552).txt:1263-1322.
   ============================================================================ */

.search-orders-form {
    position: sticky;
    top: 0.75rem;
    z-index: 20;
    flex: 0 0 auto;
    background: var(--mud-palette-surface);
}

.search-orders-results {
    width: 100%;
    min-width: 0;
    min-height: 0;
}

.search-orders-table {
    width: 100%;
    min-width: 0;
}

@media (max-height: 800px) {
    .search-orders-table {
        max-height: 24rem;
    }
}

@media (max-width: 960px) {
    .search-orders-form {
        position: relative;
        top: auto;
        z-index: auto;
    }
}
