/*Ticket comments*/
.ticket-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 70%;
}

.chat-admin {
    background-color: #e0f7fa;
    align-self: flex-start;
}

.chat-client {
    background-color: #ffe0b2;
    align-self: flex-end;
}

.chat-text {
    display: inline-block;
    margin-left: 5px;
}

/*Ticket status*/
.ticket-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    font-size: 0.9em;
}

.mcp-ticket-open,
.mcp-ticket-closed {
    background-color: #d4edda;
    padding: 5px 10px;
    border-radius: 5px;


    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
}
.mcp-ticket-closed {
    background-color: #f8d7da;
}


/* Ticket list items */
.mcp-ticket-item {
    padding: 15px;
    border-radius: 6px;
    color: #fff;
}


/* Chat messages */
.ticket-chat { margin-top: 15px; }
.chat-message { padding: 10px; margin-bottom: 5px; border-radius: 5px; color: #fff; max-width: 80%; }
.chat-admin { background-color: #007bff; text-align: left; }
.chat-client { background-color: #17a2b8; text-align: right; }

/* Mighty Client Portal Tickets Table */
.mcp-tickets-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

.mcp-tickets-table th,
.mcp-tickets-table td {
    padding: 12px 15px;
    text-align: left;
}

.mcp-tickets-table th {
  background-color: #eefbff;
  font-weight: bold;
  border: none !important;
}

/*.mcp-tickets-table tr:first-child {
  border-bottom: none;
}*/

.mcp-tickets-table thead tr {
    border-bottom: none;
}

.mcp-tickets-table tr {
    padding:10px;
    border-bottom: 1px solid #eee;
}

.mcp-tickets-table .ticket-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: #f1f1f1;
}

/*.mcp-tickets-table tr:hover {
    background-color: #f9f9f9;
}*/

.mcp-tickets-table .mcp-ticket-open {
    color: #01b95a;
    background:none;
}

.mcp-tickets-table .mcp-ticket-closed {
    color: #f2421a;
    background:none;
}

.mcp-ticket-open {
    background-color: #d4edda;
    color: #155724;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.mcp-ticket-closed {
    background-color: #f8d7da;
    color: #721c24;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

