.img-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-right: 5px;
    flex-shrink: 0;
}

.sidebar {
    width: 400px;
}

.img-container img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.info-ticket {
    width: 100%;
}

.tickets-list, .ticket-chat-handler {
    max-height: calc(100vh - 120px);
}

.ticket-head {
    margin-bottom: 20px;
}

.tickets-list {
    overflow-y: scroll;
    overflow-x: hidden;
}

.ticket-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.ticket-chat {
    background: #121212;
    border-radius: 8px;
}

.ticket-chat .user-sender {
    background: white;
}

.ticket-chat .user-replier {
    background: #0090FF;
    color: white !important;
}

#table-detail {
    font-size: 0.9em;
}

#table-detail tr > td:first-child {
    width: 150px;
    padding: 5px 0;
}

#table-detail .fi-badge {
    max-width: 130px;
}

.ticket-closed {
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    color: white;
    width: 100%;
    text-align: center;
}

.ticket-filters {
    button {
        margin-bottom: 10px;
    }
}

