.sirmax-chat-container {
    background: linear-gradient(to right, #1a1a1a, #111);
    border: 1px solid #333;
    border-radius: 10px;
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #eee;
}
.sirmax-chat-box {
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 15px;
    height: 300px;
    overflow-y: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}
.sirmax-msg {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    animation: fadeIn 0.3s ease-in;
}
.sirmax-msg .avatar { flex-shrink: 0; }
.sirmax-msg .bubble {
    background: #2a2a2a;
    border-left: 4px solid #0dbf73;
    padding: 10px;
    border-radius: 6px;
    flex: 1;
}
.sirmax-msg .bubble strong { color: #0dbf73; }
.sirmax-msg .bubble small {
    font-size: 11px;
    color: #aaa;
    display: inline-block; /* Changed to inline-block */
    margin-top: 4px;
}
.sirmax-msg .bubble .seen-status { /* New style for seen status */
    font-size: 10px;
    color: #0dbf73;
    margin-left: 5px;
    font-weight: bold;
}
.sirmax-chat-form {
    display: flex;
    gap: 10px;
}
.sirmax-chat-form input[type="text"] {
    flex: 1;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    color: #eee;
}
.sirmax-chat-form button {
    background: #0dbf73;
    color: #000;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

/* Style for the delete button */
.sirmax-msg .bubble .delete-msg-btn {
    background: none;
    border: none;
    color: #ff4d4d; /* Red color for delete icon */
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    margin-left: 10px;
    vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.2s ease-in-out;
}
.sirmax-msg .bubble .delete-msg-btn:hover {
    opacity: 1;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}