.user-carousel {
    display: flex;
    overflow: auto;
}

.user-item {
    margin: 10px;
    cursor: pointer;
}

#user-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:1000;
}

.user-popup-content {
    background: #fff;
    padding: 20px;
    position: relative;
    width:90% !important;
}

.user-popup-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#popup-header {
    display: flex;
    align-items: center;
}

#popup-avatar {
    height: 100px;
    margin-right: 20px;
}

#popup-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}