/* Skillmaster Video Lightbox Styles */
#sm-video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}
#sm-video-lightbox.sm-active {
    display: flex;
}
.sm-video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}
.sm-video-lightbox-video {
    width: 100%;
    border-radius: 8px;
    outline: none;
}
.sm-video-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 5px 10px;
}
.sm-video-lightbox-close:hover {
    color: #FF9100;
}

/* Hacer que el icon-box con video sea clickeable */
.elementor-widget-icon-box [data-video-url] {
    cursor: pointer;
}
.elementor-widget-icon-box [data-video-url]:hover .elementor-icon {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}
