::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.25); /* Transparent scrollbar */
    width: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.35); /* Slightly less transparent on hover */
    cursor: pointer;
}

::-webkit-scrollbar-track {
    background-color: transparent; /* Transparent track */
}