.buddylist_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 15vw;
    height: 5vh;
    border: solid 1px;
    border-color: gray;
    border-radius: 0 2.5vh 2.5vh 0; 
}

@media (hover: hover) {
    .buddylist_item:hover {
        background-color: rgba(73, 73, 73, 0.5);
        cursor: pointer;
    }
}

.buddylist_item_status {
    width: 1vw;
    height: 100%;
    background-color: gray;
}

.buddylist_item_left {
    width: 10vw;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0.5vw;
    font-size: 1.4vh;
}

.buddylist_item_right {
    display: flex;
    justify-content:flex-end;
    align-items: center;
    height: 100%;
    width: 3.5vw;
}

.buddylist_icon_container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buddylist_item_icon {
    width: 4vh;
    height: 4vh;
    border-radius: 20vw;
    margin: 0.5vh;
    border: solid 1px;
    border-color: gray;
    height: 3vh;
    width: 3vh;
    min-width: 3vh;
}

.buddylist_cmd_icon {
    width: 2vh;
    height: 2vh;
    margin: 0.1vh;
    border-radius: 50%;
    border: solid 1px;
    border-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .buddylist_cmd_icon:hover {
        border-color: gray;
        background-color: rgba(200, 200, 200, 0.2);
        cursor: pointer;
    }
}

.bl_status_red {
    background-color: red;
}

.bl_status_green {
    background-color: green;
}


.bl_busy {
    background-color: red;
}

.bl_idle {
    background-color: green;
}

.bl_ring {
     animation: blinker 1s linear infinite;
}

.bl_avoid {
    background-color: blue;
}


.bi_busy {
    background-color: rgba(255, 70, 70, 0.5);
}

.bi_idle {
    background-color: transprent;
}

.bi_ring {
    background-color: rgba(255, 70, 70, 0.5);
}

@keyframes blinker {
    from,
    49.9% {
          background-color: red;
    }
    50%,
    to {
          background-color: transparent;
    }
}

.bl_status_bubble {
    position: absolute;
    bottom: -2px;
    width: 1.5vh;
    height: 1.5vh;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.bl_status_bubble svg {
    width: 1vh;
    height: 1vh;
}

.bl_status_uml {
    background-color: #2196F3;
}

.bl_status_uml_left {
    right: 1.3vh;
}

.bl_status_uml_right {
    right: -2px;
}

.bl_status_dnd {
    background-color: #f44336;
    right: -2px;
}

