
#canvas-infinite {
    background-image: radial-gradient(#1e293b 1px, transparent 1px);
    background-size: 40px 40px;
    cursor: grab;
}

#canvas-infinite:active {
    cursor: grabbing;
}

.sticky-note {
    position: absolute;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    transition: transform 0.05s ease-out;
}

.sticky-note textarea {
    flex-grow: 1;
    background: transparent;
    border: none;
    resize: none;
    outline: none;
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 500;
}

.sticky-note select {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    padding: 2px 4px;
    border: none;
    outline: none;
}

.hidden { display: none !important; }
.flex { display: flex !important; }

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}
