.cb-scroll-container {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    gap: 15px;
    scroll-snap-type: x mandatory;
}

.cb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    text-align: center;
    scroll-snap-align: start;
    text-decoration: none;
    color: #000;
}

.cb-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}
