.musicall-mention-suggestions {
    position: absolute;
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    min-width: 250px;
}
.mention-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}
.mention-item:last-child {
    border-bottom: none;
}
.mention-item:hover {
    background: #fafafa;
}
.mention-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}
.mention-name {
    font-weight: 600;
    color: #262626;
}
.mention-username {
    margin-left: 8px;
    color: #8e8e8e;
    font-size: 13px;
}