﻿/* Your existing thumbnail class likely caps size; ensure the cursor hints zoom */
.ImageHeight600 {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    cursor: zoom-in;
}

/* Overlay */
.zoom-view {
    display: none; /* hidden by default */
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    align-items: center;
    justify-content: center;
}

    .zoom-view.open {
        display: flex;
    }

.zoom-box {
    max-width: 96vw;
    max-height: 96vh;
    background: #111;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

.zoom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #1f2937; /* slate-800 */
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.zoom-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #f3f4f6;
}

.zoom-close {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 14px;
    cursor: pointer;
}

    .zoom-close:hover {
        background: rgba(255,255,255,0.1);
    }

.zoom-body {
    padding: 8px;
}

    .zoom-body img {
        display: block;
        max-width: 95vw;
        max-height: 85vh;
        width: auto;
        height: auto;
    }
