/* Shared student-photo preview. It never changes the original image or layout. */
.student-photo-hover {
    position: fixed;
    z-index: 1100;
    box-sizing: content-box;
    padding: 5px;
    border: 1px solid rgba(129, 164, 201, 0.72);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(20, 57, 94, 0.2);
    pointer-events: none;
}

.student-photo-hover > img {
    display: block;
    width: 120px;
    height: 120px;
    max-width: none;
    max-height: none;
    border-radius: 7px;
    object-fit: contain;
    pointer-events: none;
}

@media print {
    .student-photo-hover { display: none; }
}
