/*
 Theme Name: Hello Elementor Child
 Theme URI: https://example.com
 Description: Child theme for Hello Elementor
 Author: Your Name
 Template: hello-elementor
 Version: 1.0.0
*/

html,
body{
 width:100%;
 overflow-x:hidden;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 14px;   /* vertical scrollbar width */
    height: 14px;  /* horizontal scrollbar height */
}

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

::-webkit-scrollbar-thumb {
    background: #8b0000;
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}

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

/* Firefox */
html {
    scrollbar-width: auto; /* thin ki jagah auto */
    scrollbar-color: #8b0000 #1a1a1a;
}