
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 1);
}

::-webkit-scrollbar-thumb {
    background: rgba(242, 98, 39, 0.8) !important;
    border-radius: 8px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 138, 92, 1) !important;
}

::-webkit-scrollbar-corner {
    background: rgba(10, 10, 10, 1);
}


* {
    scrollbar-width: thin;
    scrollbar-color: rgba(242, 98, 39, 0.8) rgba(10, 10, 10, 1);
}


html {
    scroll-behavior: auto; 
}

body {
    overflow-x: hidden;
}


.c-scrollbar {
    position: fixed;
    right: 0;
    top: 0;
    width: 8px;
    height: 100vh;
    transform-origin: center right;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 1 !important; 
    z-index: 999;
}

.c-scrollbar:hover {
    opacity: 1 !important;
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(242, 98, 39, 0.8) !important;
    opacity: 1 !important;
    width: 8px;
    border-radius: 8px;
    margin: 4px 0;
    cursor: grab;
}

.c-scrollbar_thumb:hover {
    background: rgba(255, 138, 92, 1) !important;
}

.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
    opacity: 1 !important;
}

[data-scroll-container] {
    overflow: visible !important;
}

html.has-scroll-smooth {
    overflow: hidden;
}

html.has-scroll-dragging {
    user-select: none;
}

.has-scroll-smooth body {
    overflow: hidden;
}