/* Chat status indicators styling */
.message-status {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    margin-left: 5px;
    vertical-align: middle;
}

.message-status i {
    display: none;
}

/* Sent - single check */
.message-status[data-status="sent"] .status-sent {
    display: inline-block !important;
    color: #9ea1a4;
}

/* Delivered - double check gray */
.message-status[data-status="delivered"] .status-delivered {
    display: inline-block !important;
    color: #9ea1a4;
}

/* Read - double check blue */
.message-status[data-status="read"] .status-read {
    display: inline-block !important;
    color: #34b7f1;
    /* WhatsApp blue check color */
}

/* Custom icon sizes and alignment */
.message-status i {
    font-weight: 900;
}

.tf_chat_right .message-status {
    color: rgba(255, 255, 255, 0.7);
}

.tf_chat_right .message-status[data-status="read"] .status-read {
    color: #4fc3f7;
}