html {
  scroll-behavior: smooth;
}

div #scrollable{
    /*border: 5px red solid; */
    width: 150px;
    height: 200px;
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--scrollable-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--scrollable-blue);
    border-radius: 10px;
}

div:hover::-webkit-scrollbar-thumb {
    /*background: grey;*/
    background: var(--scrollable-blue);
}

::-webkit-scrollbar-thumb:hover {
    /*background: black !important;*/
    background: var(--scrollable-orange) !important;
    
}


#scrollUp {
	bottom: 5px;
	right: 15px;
	padding: 10px 20px;
	/*background: #1a76d1;*/
	background: var(--btn-blue);
	color: #fff;
	font-size: 25px;
	width: 45px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	padding: 0;
	border-radius: 3px;
	box-shadow: 0px 0px 10px #00000026;
}
#scrollUp:hover{
	/*background:#2C2D3F;*/
	background:var(--btn-orange);
}












/*Spinner Loading*/

 #loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Main content styles */
#content {
    display: none; /* Hide content until loading is complete */
    text-align: center;
    margin-top: 50px;
}