input:focus,
select:focus,
textarea:focus {
  border: 1px solid #008a39 !important;
  outline: none;
}

input[type="radio"]:checked {
  accent-color: #008a39;
}

::-webkit-scrollbar {
  width: 6px; /* Adjust the width of the scrollbar */
}

::-webkit-scrollbar-button {
  display: none; /* Hide the up and down arrows */
}

/* Style the scrollbar track */
::-webkit-scrollbar-track {
  background: rgb(212, 212, 212); /* Light grey background */
}

/* Style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #6d6d6d; /* Darker grey for the thumb */
  border-radius: 10px; /* Round the edges */
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Darker grey when hovering over the thumb */
}
