/* reset.css */

/* Style the scrollbar */
::-webkit-scrollbar {
  width: 0px; /* Thin width for the scrollbar */
  height: 0px; /* Thin height for horizontal scrollbar */
}

/* Style the track (background) of the scrollbar */
::-webkit-scrollbar-track {
  background: transparent; /* Make the track transparent */
}

/* Style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background-color: #000; /* Black color for the scrollbar thumb */
  border-radius: 10px; /* Rounded edges for a smoother look */
}

/* Style the scrollbar thumb when hovered */
::-webkit-scrollbar-thumb:hover {
  background-color: #333; /* Darker shade when hovered */
}

/* Remove default styling for links */
a {
  color: inherit;
  text-decoration: none;
}

/* Remove default styling for lists */
/*
ul,
ol,
li {
  list-style: none;
}
*/

/* Remove default styling for images */
img {
  border: none;
  max-width: 100%;
  height: auto;
}

/* Remove default styling for forms */
input,
textarea,
select {
  border: none;
  padding: 0;
}

/* Remove default styling for tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default styling for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}
