/* style.css */

body {
    background-image:
        radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
}

.glass-panel {
    background: rgba(30, 30, 46, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

#canvas-container {
    cursor: grab;
}

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

#graph-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.toast-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.sidebar-open {
    transform: translateX(0) !important;
}

/* Text area scrollbar */
.header-scrollbar::-webkit-scrollbar {
    width: 4px;
}