/* Flowy custom styles */
.canvas-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.component {
    position: absolute;
    user-select: none;
    cursor: move;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    transition: box-shadow 0.2s;
}

.component.selected {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px #3b82f6;
}

.connection-point {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3b82f6;
    position: absolute;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(59,130,246,0.15);
    cursor: pointer;
    z-index: 2;
}

.canvas-controls, .zoom-controls {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.flowy-modal {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    backdrop-filter: blur(4px);
}

.flowy-modal > div {
    min-height: 100vh;
    padding: 1rem;
}
