﻿/* ✅ Scrollable GridView container */
.grid-container {
    max-height: 400px; /* set as you like, e.g. 400px */
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 6px;
}

    /* Optional: fix table header */
    .grid-container table thead th {
        position: sticky;
        top: 0;
        background: #f8f9fa;
        z-index: 2;
    }
