/* Estilos del modal */
.modalimg {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semi-transparente */
    padding-top: 220px;
}

.modalimg-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    width: 100%;
    height: 60vh;
    position: relative;
}

.modalimg img {
    margin: auto;
    display: block;
    width: 100%;
}

.closeimg {
    position: absolute;
    top: 0px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .closeimg:hover,
    .closeimg:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }
