/* Visual indicator for animated blocks in editor */
.has-gsap-animation {
    position: relative;
    outline: 2px dashed rgba(120, 200, 120, 0.6);
    outline-offset: -2px;
}

.has-gsap-animation::after {
    content: 'GSAP';
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(120, 200, 120, 0.9);
    color: #fff;
    font-size: 10px;
    font-family: sans-serif;
    padding: 2px 6px;
    border-radius: 3px;
    pointer-events: none;
    z-index: 100;
    line-height: 1.4;
}

.components-panel__body .components-range-control {
    margin-bottom: 16px;
}
