/* Меню три точки */
.chat-menu-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 40px;
    color: #9e9e9e;
}
.chat-menu {
    position: absolute;
    top: 50px;
    right: 10px;
    background: #202020;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow: hidden;
    min-width: 120px;
    max-width: 160px;
}
.chat-menu.hidden {
    display: none;
}
.chat-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 10px 12px;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    color: #949494;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #333;
}
.chat-menu-item:last-child {
    border-bottom: none;
}
.chat-menu-item:hover {
    background: #292929;
}
.chat-menu-item img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    flex-shrink: 0;
}
.chat-menu-item#deleteChatOption {
    color: #953636;
}


/* Контекстное меню */
.message-context-menu {
    position: absolute;
    background: #2b2b2b;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 4px 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.message-context-menu.hidden {
    display: none;
}
.message-context-menu button {
    display: block;
    width: 100%;
    padding: 8px 16px;
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    cursor: pointer;
}
.message-context-menu button:hover {
    background: #444;
}
.message-text, .chat-message {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    user-select: none;
    -webkit-touch-callout: none;
}