.form-container {
    width: 300px;
}

.department {
    /*background-color: #f3f3f3;*/
    background-color: #eee;
    color: black;
    /*border-top: 1px solid #c1c1c1;*/
    border-top: 2px solid #E0E0E0;
    padding: 10px 20px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.department:hover{
    background-color: #E0E0E0;
}

.department--a{
    text-decoration: none;
    display: block
}

.department__name_container{
    margin-left: 11px;
    margin-right: 11px;
    display: flex;
    flex-direction: column;
    align-self: center;
    flex-grow: 1;
}

.department__name{
    margin-bottom: 0;
    font-size: 18px;
}

.department__agent_name{
    margin-bottom: 0;
    color: #897777;
}

.department__status{
    margin-top: 1px
}
.department__status--online{
    color: green;
}
.department__status--offline{
    color: #eb0000;
}

.department__image_container{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.department__image_container::before{
    content: "";
    top: 50px;
    left: 50px;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
}

.department__image_container--online::before{
    background-color: rgb(74, 213, 4);
    border-color: rgb(9, 94, 84);
}
.department__image_container--offline::before{
    background-color: red;
    border-color: white;
}

.department__image{
    max-width: 63px;
    border-radius: 9999px;
}


.department__whatsapp_icon{
    font-size: 22px;
    color: #ccc;
}
.department__whatsapp_icon--online{
    /*color: #095e54;*/
    color: #029833;
}