.button{
    padding: 10px 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.buttonActive{
    background-color: #EFFFDF;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.buttonActive:after{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: url('@assets/icons/icon-close.svg') no-repeat center center;
}


.buttonRedDot::before{
    content: '';
    display: block;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E93C3C;
}

.buttonOrangeDot::before{
    content: '';
    display: block;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F59300;
}

.buttonGreenDot::before{
    content: '';
    display: block;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #91CF4F;
}

.userID{
    position: absolute;
    top: 10px;
    right: 50px;
    background: #f7f8fc;
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    gap: 8px;
    color: #9aa1aa;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.userID:hover{
    background: #e7f0f9;
    transition: background 0.3s ease;   

}

.userPhoto{
    flex-shrink: 0;
    background: #b1ec52;
    color: #5e9802;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 20px;
}