html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: #ffffff;
    /* background: linear-gradient(to bottom, #ffffff 92%, #eafbe6 97%, #1d9b36 100%);
    background: linear-gradient(to bottom, #fafafa, #fafafa, #1d9b364f), #ffffff; */
    color: #000000;
}


.word-category-scroll::-webkit-scrollbar {
    height: 12px;
    background: transparent;
    /* No background */
}

.word-category-scroll::-webkit-scrollbar-thumb {
    background: #000000;
    /* Solid black */
    border-radius: 6px;
    border: none;
}

.word-category-scroll::-webkit-scrollbar-thumb:hover {
    background: #5f5f5f;
    /* Slightly lighter black on hover */
}

/* Hide scrollbar arrows (buttons) */
.word-category-scroll::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: block;
    background: transparent;
}

.word-category-scroll {
    scrollbar-width: thin;
    scrollbar-color: #000000 transparent;
    scroll-behavior: smooth;
}