/* Hide pagination and parent container */
.ticketDetail .TicketDetailLeftContainer__pagination,
.ticketDetail .TicketDetailLeftContainer__ticketDetailLeftContainer #parentContainer {
    display: none;
}

/* Hide Edit Ticket button */
.ticketDetail .edit-ticket,
.ticketDetail .TicketDetailLeftContainer__editTicketButton {
    display: none !important;
}

/* Hides the assigned agent's avatar/picture inside a ticket */
.Avatar__avatarImg,
img[data-id$='_assignee_image'] {
    display: none !important;
}

/* Hides the assigned agent's name inside a ticket */
.agent_name,
div[data-id='ticket_assigneeId'] {
    display: none !important;
}

/* Hides the "Assigned To" label */
.Info__infoLabel {
    display: none !important;
}

/* Hides the entity skills field */
div[data-id='ticket_entitySkills'] {
    display: none !important;
}

/* Hides the ticket channel field */
div[data-id='ticket_channel'] {
    display: none !important;
}

/* Hides the custom field 'contract' */
div[data-id='ticket_cf_contract'] {
    display: none !important;
}

/* Hides the 'Edit' button in the list header */
span[data-id='edit_close'] {
    display: none !important;
}

/* Hides all agent avatars (initials and icons) on the ticket list */
[data-id$='_assignee'],
.agent_avatar {
    display: none !important;
}
