        .cols-2{height:auto}
		.enofotos ul {
            display: flex;
            list-style: none;
            padding: 0;
        }

        .enofotos li {
            margin-right: 10px;
        }

        .enofotos img {
            cursor: pointer;
            transition: transform 0.3s;
        }

        .enofotos img:hover {
            transform: scale(1.05);
        }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.8);
        }

        .modal-content {
            position: relative;
            margin: auto;
            padding: 0;
            width: 60%;
            max-width: 1000px;
        }

        .modal-content img {
            width: 100%;
        }

        .close, .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 30px;
            transition: 0.3s;
        }

        .close {
            right: 10px;
            top: 10px;
            font-size: 40px;
            margin-top: 0;
        }

        .prev {
            left: 0;
        }

        .next {
            right: 0;
        }

        .close:hover, .prev:hover, .next:hover {
            color: #999;
        }