/* Custom styles to supplement Tailwind */

body {
    overscroll-behavior: none;
}

.lang-btn {
    transition: all 0.2s ease-in-out;
}

/* Canvas styling */
#the-canvas {
    direction: ltr;
    max-width: 100%;
}

/* Custom Scrollbar for the PDF container */
#pdf-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

#pdf-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#pdf-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

#pdf-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}