* {
    box-sizing: border-box;
}
body {
    background: #fff4de;
}
.scrollbar-x-custom {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 transparent;
    overflow-x: scroll;
}

.scrollbar-x-custom::-webkit-scrollbar {
    height: 8px;
}

.scrollbar-x-custom::-webkit-scrollbar-track {
    background: transparent;
}

.scrollbar-x-custom::-webkit-scrollbar-thumb {
    background-color: #2a50bf;
    border-radius: 9999px;
    border: 2px solid transparent;
    background-clip: content-box;
}
