/* Mencegah scroll pada body saat touch di canvas */
canvas {
    touch-action: none;
}

/* Custom Checkbox Style */
.toggle-checkbox:checked {
    right: 0;
    border-color: #4ade80;
}

.toggle-checkbox:checked+.toggle-label {
    background-color: #4ade80;
}

/* Scrollbar styling untuk panel kontrol agar terlihat rapi di mobile */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

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