/* Mention Autocomplete */
.mention-autocomplete {
    position: absolute;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 220px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.mention-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.mention-item:last-child {
    border-bottom: none;
}

.mention-item:hover,
.mention-item.active {
    background: #f8fafc;
}

.mention-item img {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.mention-item span {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

.position-relative {
    position: relative !important;
}