/* Theme Override CSS - Cloud Slider Full Width Fix */
/* Scoped to avoid conflicts with other widgets */

/* Full width only for Cloud Slider widget */
.elementor-widget-cloud-slider {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    position: relative !important;
    z-index: 1 !important;
}

.elementor-widget-cloud-slider .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .elementor-widget-cloud-slider {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .elementor-widget-cloud-slider .elementor-widget-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
} 