/**
 * Example Widget Styles
 * 
 * .change-text-to-red - Applied to widget wrapper via add_render_attribute('_wrapper')
 * .example-box        - The toggleable box element
 */

/* Applied via add_render_attribute('_wrapper', 'class', 'change-text-to-red') */
.change-text-to-red {
    color: red;
}

/* Basic box styling - padding and color are set dynamically via Elementor controls */
.example-box {
    border: 1px solid #ddd;
    margin-top: 20px;
    background: #f9f9f9;
}

/* Basic list reset */
.example-widget-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
