﻿
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: 0% auto;
    padding: 10px;
    width: 100%;
    max-width: 30%;
    border-radius: 8px;
}

.modal-img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.close {
    font-size: 22px;
    cursor: pointer;
    background-color: orangered;
    color: #fff;
    padding: 5px;
    width: 22px;
    line-height: 12px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 2vh;
    align-self: self-end;
}

    .close:hover {
        background-color: darkred;
    }

@media (max-width: 600px) {
    .modal-content {
        max-width: 90%;
        padding: 12px;
    }

    .modal-img {
        max-height: 100%;
    }
}

/* 📲 Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
    .modal-content {
        max-width: 60%;
    }

    .modal-img {
        max-height: 100%;
    }
}

/* 🖥 Large Screens */
@media (min-width: 1400px) {
    .modal-content {
        max-width: 25%;
    }
}
