/* ==========================================
   TEAM HUB SCROLL AREA
========================================== */
.team-hub-scroll-area {
    max-height: 380px; /* Caps the card length */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}

.team-hub-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.team-hub-scroll-area::-webkit-scrollbar-track {
    background: #f8fafc;
}

.team-hub-scroll-area::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.team-hub-scroll-area::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}