﻿/***************************************************************************************
 * Ontario TECK VBA Developers
 * License - 2023/2026
 *
 * Location : D:\Curriculum Vitae\ASP.Net 6\CV\wwwroot\
 * Filename : css\modalview.css
 *
 * Date Created: 2026-05-02 10:30:32 AM
 ***************************************************************************************/

/* Lock modal height */
.modal-dialog {
    height: 70vh !important;
}

/* Force modal to fill dialog */
.modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Header stays fixed */
.modal-header {
    flex-shrink: 0;
}

/* Body fills remaining space */
.modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0; /* CRITICAL for flexbox scrolling */
}
