.preview-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.preview-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
}

#close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
}

/* WEB */
@media screen and (min-width: 769px) {
    .preview-image {
        width: 535px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    }

    #close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        background: none;
        border: none;
        color: black;
        cursor: pointer;
    }
}

/* MOVIL */
@media screen and (max-width: 769px) {
    .preview-image {
        width: 330px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    }

    #close-button {
        position: absolute;
        top: 0px;
        right: 0px;
        font-size: 20px;
        background: none;
        border: none;
        color: black;
        cursor: pointer;
    }
}
