.tweekit-container {
    min-width: 200px;
    min-height: 200px;
    width: 200px;
    height: 200px;
    margin: 0;
}

.tweekit-container span {
    position: absolute;
    top:0px;
    left:0px;
}

.tw-resizer-wrap {
    position: relative;
}

.tw-resize-handle {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 2px solid #0a6bff;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    cursor: nwse-resize;
    touch-action: none;
    z-index: 4;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    color: #0a6bff;
}

.tw-resize-handle::after {
    content: '';
}

.tw-resize-handle--square {
    top: -10px;
    right: -10px;
}

.tw-resize-handle--circle {
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 50%;
    cursor: ns-resize;
}

.tw-resize-handle--locked {
    background: #0a6bff;
    border-color: #0a3db2;
    color: #fff;
}

.tw-resize-handle--square.tw-resize-handle--locked::after {
    content: '▢';
}

.tw-resize-handle--circle.tw-resize-handle--locked::after {
    content: '◯';
}

.tw-resizer-wrap--locked::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px dashed rgba(10, 107, 255, 0.6);
    border-radius: 6px;
    pointer-events: none;
}

@keyframes pulse {
    0% {
     transform: scale(1, 1);
    }

    50% {
     transform: scale(1.01, 1.01);
    }

    100% {
    transform: scale(1, 1);
    }
}
