@media only screen and (min-width: 728px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
}

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
}

.live-status-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 215px;
    background: #313e59;
    border-radius: 10px;
    position: relative;
    max-height: 80px;
    min-height: 50px;
    padding: 8px;
    cursor: pointer;
}

.tooltip-inner {
    max-width: 200px;
    min-width: 200px;/* Set a maximum width */
    width: auto; /* Allow width to adjust to content up to max-width */
    background:#292b43;
    margin-top:50px;
    border-radius:8px;
    padding:4px 8px;
    z-index:99;
}

.live-status-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
}

.live-status-user p {
    font-size: 0.75rem;
    font-weight: 400;
    color: #ddd;
}

img.live-status-img {
    height: 35px;
    width: 35px;
    border-radius: 28px;
    overflow: hidden;
    object-fit: fill;
}

.live-status-points {
    background: #233043;
    border-radius: 16px;
    padding: 4px 8px;
}

.live-status-points span {
    color: #fff;
}

.live-status-inner {
    position: absolute;
    bottom: -78px;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #292b43;
    border-radius: 10px;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.15s ease;
}

.inner-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    padding: 0px 9px;
    font-size: 12px;
}

.inner-col p {
    font-size: 0.68rem;
    font-weight: 100;
}

.live-status-card:hover .live-status-inner {
    height: unset;
    padding: 8px;
}