 /* tabla para webcode con carousel */
.webtable{
    width:100%;
	}
.webtd1{
    width: 70%;
	text-align:center;
	vertical-align: top;
	}
.webtd2{
    width: 30%;
	text-align:center;
	background-color:#f0f7ff;
	vertical-align: top;
	}

/* selector universal p/ aplicar los estilos contenidos dentro de las llaves ({}) a todos los elementos del documento, no importa su tipo o contenido. */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .carousel-container {
            max-width: 800px;
            margin: 20px auto;
            position: relative;
            overflow: hidden;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel img {
            width: 100%;
            height: auto;
            display: block;
        }

        .thumbnails {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .thumbnail {
            width: 60px;
/*            height: 40px; */
            height: 60px;
            object-fit: cover;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .thumbnail.active {
            opacity: 1;
            border: 2px solid #333;
        }

        .nav-button {
            position: absolute;
/*            top: 50%;*/
            top: 25%;
/*            transform: translateY(-50%);*/
            transform: translateY(-25%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 18px;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        @media (max-width: 600px) {
            .carousel-container {
                margin: 10px;
            }

            .thumbnail {
                width: 50px;
/*                height: 30px; */
                height: 50px;
            }

            .nav-button {
                padding: 8px;
                font-size: 16px;
            }
        }
