.scrollbar-thin::-webkit-scrollbar {
    height: 8px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background-color: rgb(30 41 59);
    border-radius: 9999px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background-color: rgb(71 85 105);
    border-radius: 9999px;
}

.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background-color: rgb(100 116 139);
}

[data-gallery-image="lazy"] {
    background: linear-gradient(90deg, rgb(30 41 59) 0%, rgb(51 65 85) 50%, rgb(30 41 59) 100%);
    background-size: 200% 100%;
    animation: gallery-loading 1.5s ease-in-out infinite;
}

@keyframes gallery-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
