﻿body {
}
/* Fullscreen preview style */
.fullscreen-preview {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000e1;/* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    .fullscreen-preview img {
        max-width: 60%;
        max-height: 60%;
        border-radius:20px;
        transition: transform 0.3s ease-in-out;
    }
        .fullscreen-preview img:hover {
            transform: scale(1.6);
            border: 2px solid white;
            background-color: white;
        }
        .cancelbtn {
            background-color: transparent;
            position: absolute;
            font-size: 20px;
            cursor: pointer;
            font-weight: 700;
            right: 20px;
            top: 50px;
            height: 30px;
            color: white;
            width: 30px;
            transition: transform 0.3s ease-in-out;
        }

    .cancelbtn:hover:hover {
        color: red;
        background-color: transparent;
        transform: scale(2.3);
    }