/* Custom overrides built over Bootstrap 5 */
body {
    background-color: #000;
}

/* Custom scrollbars for a cleaner dark UI */
.custom-scroll {
    overflow-y: auto;
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #495057;
    border-radius: 4px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #6c757d;
}

/* Helper utilities missing in standard bootstrap bundle */
.w-15px {
    width: 15px;
}

.w-20px {
    width: 20px;
}

.inset-0 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#webgl-container {
    cursor: grab;
    min-height: 80vh; /* Wymuś wysokość dla podglądu 3D */
    flex-grow: 1;
    background: #111;
}

#webgl-container:active {
    cursor: grabbing;
}