/* Modal Styling */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Dim background */
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.modal-content {
    position: relative;
    background: transparent;
    /* No background to avoid affecting image size */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}

.modal img {
    max-width: 90vw;
    /* Responsive */
    max-height: 90vh;
    /* Responsive */
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 5px 10px;
}