/* Your Custom CSS Goes here */

html {
    overflow: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}


.prize button {
  background-color: #823c18;
  color: #fff;
  border-radius: var(--okw-border-radius-lg);
  font-size: var(--okw-font-size-16);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  outline: none;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding: 15px 18px;
  min-width: max-content;
  width: fit-content;
  position: relative;
  cursor: pointer;
}

.prize button:active {
  border: 1px solid transparent;
  box-shadow: 0px 0px 0px 3px var(--okw-brand-color2);
  -webkit-box-shadow: 0px 0px 0px 3px var(--okw-brand-color2);
  -moz-box-shadow: 0px 0px 0px 3px var(--okw-brand-color2);
}


/* Custom Scrollbar Styling for WebKit Browsers */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #e0f5e0; /* Light green background */
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #4CAF50; /* Green scrollbar thumb */
  border-radius: 10px;
  border: 2px solid #e0f5e0;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #388E3C; /* Darker green on hover */
}

/* Firefox Scrollbar Styling */
* {
  scrollbar-width: thin;
  scrollbar-color: #4CAF50 #e0f5e0;
}

