.select-entity-container {
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    height: 40px;
    /* width: 170px; */
    min-width: max-content;
    margin: 4px;
    padding: 8px 4px;
    background-color: #2E343C0A;
    border: 1px solid #2E343C1F;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    justify-content: space-evenly;
    align-items: center;
}


.select-entity-container.wrong {
    background-color:#9b5b5bd8;
}

.select-entity-container.done {
    animation: select-entity-container-done 0.5s ease-in;
}

@keyframes select-entity-container-done {
    from {
        background-color: #27422985;
    }
    to {
        background-color: #2E343C0A;
    }
}

.select-entity-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 4px;
    height: 32px;
    padding: 6px 8px;
    gap: 10px;
    color: #2E343C7A;
    background-color: #ffffff00;
    border: 0px;
    white-space: nowrap;
    
}
.select-entity-button:hover {
    background-color: #00000010;
}

.select-entity-button.active {
    background-color: #FFFFFF;
    color: black;
}

.org-table {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.org-tr {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
}

.org-table input[type="button"]{
    border: 1px solid #2E343C1F;
    min-width: 200px;
    height: 36px;
    padding: 6px 10px;
    border-radius: 8px;
    background: none;
    outline: none;
    background-color: #2E343C0A;
    text-align: justify;
}
.org-table input[type="button"]:hover{
    background-color: rgba(25, 28, 32, 0.253);
}

.entities-table {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}


.organization-card-container {
    background-color: #2E343C0A;
    display: flex;
    flex-direction: row;
    margin: 2px;
    padding: 4px;
    min-width: 414px;
    min-height: 80px;
    align-items: center;
    /* flex-wrap: nowrap; */
    justify-content: space-between;
}

@media screen and (max-width: 520px) {
    .organization-card-container {
        background-color: #2E343C0A;
        display: flex;
        flex-direction: column;
        margin: 2px;
        padding: 4px;
        min-width: 414px;
        min-height: 80px;
        align-items: flex-start;
        /* flex-wrap: nowrap; */
        justify-content: space-between;
    }
}

.org-side{
    display:flex;
    min-width: 200px;
    flex-direction: column;
    gap: 6px;
    border-radius: 2px;
}

.org-side:hover{
    background-color: #99999986;
  }

.org-status{
    display:block;
    font-size: 14px;
}

.org-name{
    display:block;
    font-size: 13px;
    font-weight: 600;
}

.contact-side{
    display:flex;
    min-width: 200px;
    flex-direction: column;
    gap: 6px;
}

.contact-status{
    display:block;
    font-size: 13px;
}

.contact-name{
    display:block;
    font-size: 12px;
    font-weight: 500;

}

.contact-plate{
    padding: 2px;
    display:flex;
    flex-direction: row;
    background-color: #FFFFFF;
    border-radius: 6px;
    border: 2px solid #2e343c21;
    gap: 2px;
    justify-content: space-between;
}

.contact-plate-acronim {
    height: 32px;
    width: 32px;
    border-radius: 32px;
    background-color: #2E343C7A;
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    align-content: center;
}
.contact-plate-email{
    height: 12px;
}

.contact-plate-email:hover{
    background-color: #27422985;
}

.contact-plate-phone{
    height: 12px;
}

.contact-plate-phone:hover{
    background-color: #27422985;
}

.contact-plate-email::after{
    content: '✉';
}
.contact-plate-phone::after{
    content: '☎';
}

.contact-plate-change-contact{
    height: 12px;
}

.contact-plate-change-contact:hover{
    background-color: #27422985;
}

.contact-plate-change-contact::after{
    content: '𝌡';
}

.contact-plate-chat {
    width: 32px;
    height: 32px;
    text-align: center;
    align-content: center;
    background-image: url('/images/chat.svg');
    background-position: center center; 
    background-repeat: no-repeat;
}

.contact-plate-name {
    min-width: 130px;
}


